Hello,
I am troubleshooting our integration with Zendesk for one of our clients.
I have read the documentation: https://developer.zendesk.com/api-reference/help_center/help-center-api/translations/#create-translation
I can not access the Zendesk instance itself, I can only validate information using API.
Please allow me to share the investigation results:
All of the API Calls were tested using postman with the proper email-token combination for this user.
GET https://{subdomain}.zendesk.com/api/v2/users/me.jsonresponse 200 OK (modified):"email": "some-client@mail.com", "role": "admin", "verified": true, "ticket_restriction": null,Looks like this account has sufficient rights to properly send the translated content.GET https://{subdmain}.zendesk.com/api/v2/help_center/articles/360017900680/translations/missing.jsonresponse 200 OK:{"locales": ["de-de", "es-419"] }The email and token combination can extract the missing translations of the article. This proves that the translations were in fact not sent.POST https://{subdomain}.zendesk.com/api/v2/help_center/articles/360017900680/translations.jsonrequest body raw-JSON: { "translation": { "locale": "de-de", "title": "connection-test-de-de", "body": "Test, please ignore" } }response 403 Forbidden - no response body
Allowed for
- Help Center Managers
- Agents (article translations only)
The requesting agent can create an article translation only if they can edit the article in Help Center.
Our client stated that the article in question can be accessed and edited with this account. I would greatly appreciate any advice
Kind regards,
Adam
A 403 response would indicate that the account does not have the required permissions to alter the article in question. I'd suggest having your client have a read through this article to ensure their permissions have been set correctly, and trying the API request again once the necessary changes have been made.
Understanding Guide user permissions for knowledge base access
I hope this helps! Feel free to reach out if you run in to any further issues.
Tipene