Budget
Die Endpunkte dieser Endpunktberechtigung finden Sie im Controller "BudgetingRead" und "BudgetingCatalog".
Um Budgets abrufen zu können, muss die Endpunktberechtigung "Budget lesen" aktiviert werden.
Die Endpunkte der Version 1.2 sind momentan in der Entwicklung und können noch Änderungen erfahren.
Budgets abrufen
Version 1.2
get
Authorizations
Query parameters
apiKeystringOptional
limitinteger · int32OptionalExample:
20
offsetinteger · int32Optional
idinteger · int32Optional
fiscalYearNumberinteger · int32Optional
companyCodeIdinteger · int32Optional
budgetDefinitionIdinteger · int32Optional
includeProjectsbooleanOptionalDefault:
false
showNullValuesbooleanOptionalDefault:
false
Responses
200
OK
400
Bad Request
401
Unauthorized
get
GET /openwowi/v1.2/BudgetingRead/Budget HTTP/1.1
Host:
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
[
{
"Id": 1,
"Code": "text",
"Note": "text",
"OrderLock": true,
"ReleaseLock": true,
"VoucherProcessReleaseLock": true,
"EfficiencyValidationLock": true,
"InvoiceEnterLock": true,
"CompanyCode": {
"Id": 1,
"Name": "text",
"Code": "text"
},
"BudgetDefinition": {
"Id": 1,
"Code": "text"
},
"FiscalYear": {
"Id": 1,
"Number": 1
},
"BudgetUsageType": {
"Id": 1,
"Code": "text"
},
"ShowAsNetAmount": true,
"ClosedBudget": true,
"ResponsibleOfficial": {
"Id": 1,
"CodeShort": "text",
"PersonId": 1
},
"Projects": [
{
"Id": 1,
"Code": "text",
"Name": "text"
}
]
}
]
Budget Details abrufen
Version 1.2
get
Authorizations
Path parameters
budgetIdinteger · int32Required
Query parameters
apiKeystringOptional
limitinteger · int32OptionalExample:
20
offsetinteger · int32Optional
idinteger · int32Optional
fiscalYearNumberinteger · int32Optional
companyCodeIdinteger · int32Optional
budgetDefinitionIdinteger · int32Optional
showNullValuesbooleanOptionalDefault:
false
Responses
200
OK
400
Bad Request
401
Unauthorized
get
GET /openwowi/v1.2/BudgetingRead/{budgetId}/BudgetDetail HTTP/1.1
Host:
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
[
{
"Id": 1,
"ParentId": 1,
"BookingPeriodNumber": 1,
"PlannedValue": 1,
"PlannedOrder": 1,
"AwardValue": 1,
"IsGroup": true,
"Note": "text",
"Budget": {
"Id": 1,
"Code": "text"
},
"Hierarchy1": {
"Type": {
"Id": 1,
"Code": "text"
},
"Id": 1,
"Value": "text"
},
"Hierarchy2": {
"Type": {
"Id": 1,
"Code": "text"
},
"Id": 1,
"Value": "text"
},
"Hierarchy3": {
"Type": {
"Id": 1,
"Code": "text"
},
"Id": 1,
"Value": "text"
}
}
]
Last updated