update order

View as Markdown
### PATCH /api/v1/{account_id}/projects/{project_id}/rate_limiters/order This endpoint is used to update the rate limiters order for a specific project within an account. #### Request - `base_url` (string): The base URL of the API. - `account_id` (string): The unique identifier of the account. - `project_id` (string): The unique identifier of the project. #### Response The response for this request is a JSON object with the following schema: ``` json { "id": "", "customerId": "", "name": "", "url": "", "siteKey": "", "serverKey": "", "isProtected": true, "rules": { "order": [], "rules": [] }, "rateLimits": { "order": [], "rateLimits": [] }, "phishingInfo": { "originalUrl": "", "action": "", "allowedUrls": [] }, "responseExtraFields": [], "updatedAt": "", "createdAt": "" } ``` - `id` (string): The unique identifier of the project. - `customerId` (string): The unique identifier of the customer associated with the project. - `name` (string): The name of the project. - `url` (string): The URL of the project. - `siteKey` (string): The site key of the project. - `serverKey` (string): The server key of the project. - `isProtected` (boolean): Indicates whether the project is protected. - `rules` (object): An object containing order and rules arrays. - `rateLimits` (object): An object containing order and rateLimits arrays. - `phishingInfo` (object): An object containing originalUrl, action, and allowedUrls arrays. - `responseExtraFields` (array): An array of extra fields in the response. - `updatedAt` (string): The timestamp when the project was last updated. - `createdAt` (string): The timestamp when the project was created.

Path parameters

account_idstringRequired
project_idstringRequired

Request

This endpoint expects a list of strings.

Response headers

Content-Lengthinteger
Connectionstring

Response

success