Updating customized fields of organisation using the api

Hi @Laurens!

When using the Pipedrive API doc, please keep in mind it is more of an example rather than a be-all-end-all option and it is best to use an API Development Environment like Postman. To GET all the organization fields, this endpoint can be used to pinpoint the API hash or the field API key: https://api.pipedrive.com/v1/organizationFields?api_token=

Knowing which custom field you want to update for a specific organization, feel free to use:
https://api.pipedrive.com/v1/organizations/[ORG ID]?api_token=

and in the body:
{
“API hash or field API key”:“intended value”,
“API hash or field API key”:“intended value”
}

Note: if looking to update one field only, remove the comma “,” at the end of the first line in the body.

Hope this helps!

3 Likes