curl --request GET \
--url https://api.partoo.co/v2/custom_fields/section \
--header 'x-APIKey: <api-key>'{
"sections": [
{
"id": 1,
"name": "Section A",
"order": 3
},
{
"id": 2,
"name": "Section B",
"order": 4
},
{
"id": 3,
"name": "Section C",
"order": 5
}
]
}Retrieve list of custom fields sections for a given org_id.
curl --request GET \
--url https://api.partoo.co/v2/custom_fields/section \
--header 'x-APIKey: <api-key>'{
"sections": [
{
"id": 1,
"name": "Section A",
"order": 3
},
{
"id": 2,
"name": "Section B",
"order": 4
},
{
"id": 3,
"name": "Section C",
"order": 5
}
]
}The authentication system on Partoo API is using API Key that should be put in the header of the request (the name of the header is x-APIKey). An api_key is linked to a user. This user's role will give you different access level to the API features.
Organization id
Was this page helpful?