REST API for Project Complementary Attributes

I am using the Dolibarr REST Explorer & wish to get an api that includes all Complimentary Attribute fields that have been added to “Projects”
Currently the “Get” Projects API only appears to return standard, out of the box fields.
How should the API url be written to include our custom attribute codes “sprint” & “percent”?

Hi @gsfr,

you do not need to change something. The custom attributes should be there out of the box. In the response for the projects you can find the object “array_options” for each project. Inside it you can find all your custom fields belonging to the project. The field names start always with “options_”. Please see my example below with a custom field “test”:

"array_options": {
    "options_test": "sdfsdfsdf"
  },

Regards,
Sven

Hi Sven
Thank you very much, you are correct, I have now found them, they were in a collapsed column within Power Query.
Much appreciated & all the best. Greg