How to insert a custom field into persons C#?

how to insert a custom field into persons C#?

Hi @Bastian_Nunez

You would need to make a POST request (as any other POST request in C#) to this endpoint with “name” in the request body. Access token in Authorization header, or api_token in query params should be used in order to authorize the request.

i can create the custom field, but i cant add this field to person, when i created the person

Once you created a custom field, you can use the field’s key to set a value for a new or existing person.

For example, I have a custom field “7546ba96df2563cfe8c91d63dd4a1fd1a5c79567” which is shown on details page

In order to set a value for this field for a new person I need to pass key/value pair in request body

As result

Hope it helps.