GetProjectRequestById
This method can be used for the following: Get details for a project request you have access to, by project request identifier (Id).
Last updated
GET /api/ss/request/5e8017d2e1385f0c58e8f4f8?cf_key_allowlist=key1&cf_key_allowlist=key2 HTTP/1.1GET /api/ss/request/5e8017d2e1385f0c58e8f4f8?cf_key_blocklist=key1&cf_key_blocklist=key2 HTTP/1.1curl -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'{
"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": [
"..."
],
"files": [
{
"hash": "...",
"id": "...",
"name": "...",
"size": 999,
"size_kb": 999,
"storage_location": "...",
"storage_name": "...",
"type": "..."
}
],
"custom_fields": [
{
"key": "...",
"value": "..."
}
]
}
}