GetProjectRequestById
This method can be used for the following: Get details for a project request you have access to, by project request identifier (Id).
The following URL, Headers and Parameters are required for requests to this API endpoint. Where a parameter is optional, it will be indicated. Otherwise treat all parameters as mandatory.
GET /api/ss/request/:id HTTP/1.1
Host: demo.attackforge.com
X-SSAPI-KEY: APIKey
Content-Type: application/json
Connection: close
id (string)
Identifier for the project request.
Example:
GET /api/ss/request/5e8017d2e1385f0c58e8f4f8 HTTP/1.1
The following example is a cURL request to get a project request by its identifier (Id).
Include API Token instead of stars in 'X-SSAPI-KEY: ***************************************' parameter.
curl -X GET 'https://demo.attackforge.com/api/ss/request/5e8017d2e1385f0c58e8f4f8' -H 'Host: demo.attackforge.com' -H 'X-SSAPI-KEY: ***************************************' -H 'Content-Type: application/json' -H 'Connection: close'
Response contains a project request object.
{
"request":{
"id": "...",
"project_id": "...",
"created": "...",
"last_updated": "...",
"name": "...",
"code": "...",
"status": "...",
"groups": [
"..."
],
"scope": [
"..."
],
"test_types_to_be_performed": [
"..."
],
"project_start_date": "...",
"project_end_date": "...",
"project_testing_hours": "...",
"onsite_testing_required": "...",
"reason_for_testing": "...",
"created_by": "...",
"supporting_documents": [
"..."
],
"custom_fields": [
{
"key": "...",
"value": "..."
}
]
}
}
Last modified 1mo ago