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.1Host: demo.attackforge.comX-SSAPI-KEY: APIKeyContent-Type: application/jsonConnection: 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": "...","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": "...","created_by": "...","supporting_documents": ["...", "..."]}}