delete
### GET /api/v1/{account_id}/projects/{project_id}
This endpoint retrieves project details for a specific project within an account.
#### Request
No request body parameters are required for this endpoint.
- `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_id
project_id
Response headers
Content-Length
Connection
Response
success
Errors
400
Bad Request Error

