Problem Accessing Contacts API
已于 2023年10月11日 发布
I am attempting to use the following API: https://developer.zendesk.com/api-reference/sales-crm/resources/contacts/
I am using the following ReST call from my local Postman client: https://<mydomain>.zendesk.com/api/v2/contacts
What I get in return is a 404 with this message:
{
"error": "InvalidEndpoint",
"description": "Not found"
}
Other APIs work fine, such as https://<mydomain>.zendesk.com/api/v2/users
Can you explain why /contacts is not found? I believe I have the correct URL.
Thank you!
0
1
1 条评论
Tipene Hughes
The Sell API uses a different base URL for the API endpoints. You'll want to use
https://api.getbase.com/v2/contacts
, as noted in the docs here. You'll also need to authenticate your request to the endpoint as well, which you can read more about here.I hope this helps! Feel free to reach out with any questions.
Tipene
0
登录以发表评论。