Can't Find an endpoint that returns the values of an OrganizationField per Organization

Hello,

I wanted to know if there is and endpoint in the API where I can find the relationships of my custom field options and its specific Entity.

For example:

I’ve set up an OrganizationField called “Organization Brand Color” and I have ser up the following options

{
“id”: 2,
“key”: “fsadfasgrfgargdrsgrsd”,
“name”: “Organization Brand Color”
“options”: [
{
“label”: “Blue”,
“id”: 1
},
{
“label”: “Red”,
“id”: 2
}
]
}

Is there a place were I could find the value that has been selected for either a list of all organizations o a specific organization.
{
organization: 1
custom_fields:[
{
“cutom_field_id”:1
“custom_field_value”:1
}
]
}
meaning that the Organization 1 has an organization brand color of Blue

Is there anywhere in the API where I would be able to get this information

Hey @Memo_Carsolio
Welcome to the community :wave: ! When you get all / one organization, you can find the custom field key and its value in the payload

https://developers.pipedrive.com/docs/api/v1/Organizations#getOrganizations

The challenge as of now is that you do not have a direct way to map the keys to the field names at the moment. You need to combine this data on your end.

Regardless this is one of the popular feedbacks that we receive and is already under considerations :slight_smile: