POST methods are used for creating and updating deleting data, while DELETE methods are used for removing data.
Data is passed as application/json in the request body.
The default maximum rate limit is 10 requests per second. After that, you’ll hit the rate limit and receive a 429 response error code with an error message:
Copy
{ "error": { "code": "RATE_LIMIT_EXCEEDED", "message": "You have exceeded the maximum number of requests per second", "docs": "http://docs.mobilizehub.com", }}