curl --request GET \
--url https://{host}/cleemy-procurement/api/natures \
--header 'Authorization: <authorization>'{
"items": [
{
"id": 123,
"name": "<string>",
"costFamily": {
"id": 123,
"name": "<string>"
},
"state": "Enabled",
"accountingPlans": [
{
"id": 123,
"chargeAccount": "<string>"
}
]
}
],
"prev": "<string>",
"next": "<string>",
"count": 1
}List natures.
curl --request GET \
--url https://{host}/cleemy-procurement/api/natures \
--header 'Authorization: <authorization>'{
"items": [
{
"id": 123,
"name": "<string>",
"costFamily": {
"id": 123,
"name": "<string>"
},
"state": "Enabled",
"accountingPlans": [
{
"id": 123,
"chargeAccount": "<string>"
}
]
}
],
"prev": "<string>",
"next": "<string>",
"count": 1
}API key. Value must be formatted like so: lucca application={api_key}.
Include root collection fields (paging).
prev, next, count Page selection. Page tokens can be retrieved by adding ?fields.root=next,prev on your GET collections requests.
Page size.
0 <= x <= 1000Was this page helpful?