improved
[Core API] Rate limiter
about 6 years ago by Xavier
- Additional rate limiting on resource intensive routes to better protect Front's infrastructure. Please see 'Rate Limiting' for more details.
GET /responses
route to list all canned answersGET /responses/:response_id
route to fetch a specific canned answerGET /tags/:tag_id/children
route to list all children of the provided tag.POST /tags/:tag_id/children
route to create a child for the provided tag.PATCH /tags/:tag_id
route can update the parent tag.updated_at
, created_at
to the Tag response bodychildren
to the Tag _links
is_blocked
to know if an account has been blocked.GET /teammates/:teammate_id/inboxes
endpoint to list the inboxes a teammate has access to.POST /channels/:channel_id/messages
and POST /conversations/:conversation_id/messages
) are now validating that the tags can be applied depending on the inbox(es) of the message.POST /channels/:channel_id/messages
and POST /conversations/:conversation_id/messages
) are now replying with the draft that will be sent.is_draft
in the message representation to make the distinction between messages still in draft mode and messages that have been sent or received.error_type
in the message representation to expose the type of error that caused a draft to fail to send.message_uid
in the response of asynchronous message creation endpoints (replace conversation_reference
).