๐ Describe the Bug
I keep making useless requests to the /customFields endpoint just so I can find a customField_id by the key and then finding that Id at the contact level (/contacts/search response) so that it can be used in multiple sub-accounts.
๐ API Endpoint
/contacts/search
โ
Expected Behavior
The API should include the custom_field_key next to the Id and value
๐ป Screenshots or Code Samples
Current customFields response in /contacts/search
{
id: "some_id",
value: "string"
}
Expected:
{
key: "custom_field_key",
id: "some_id",
value: "string"
}
Product Area
contacts
๐ Use Case
We need this field to:
- Make less calls to the API
- Write more efficient code
๐จ Why Should This Be Prioritized?
This should be prioritized because:
๐ง Additional Context
No response
๐ Describe the Bug
I keep making useless requests to the /customFields endpoint just so I can find a customField_id by the key and then finding that Id at the contact level (/contacts/search response) so that it can be used in multiple sub-accounts.
๐ API Endpoint
/contacts/search
โ Expected Behavior
The API should include the custom_field_key next to the Id and value
๐ป Screenshots or Code Samples
Current customFields response in /contacts/search
{ id: "some_id", value: "string" }Expected:
{ key: "custom_field_key", id: "some_id", value: "string" }Product Area
contacts
๐ Use Case
We need this field to:
๐จ Why Should This Be Prioritized?
This should be prioritized because:
๐ง Additional Context
No response