GetProjectRequests
This method can be used for the following functionality: Get details for all project requests user has access to. This method can be used with optional filter.
Last updated
GET /api/ss/requests?name=Test Project HTTP/1.1GET /api/ss/requests?code=Project123 HTTP/1.1GET /api/ss/requests?status=Testing HTTP/1.1GET /api/ss/requests?startDate=2021-06-03T00:00:00.000Z HTTP/1.1GET /api/ss/requests?endDate=2021-06-03T00:00:00.000Z HTTP/1.1GET /api/ss/requests?skip=10 HTTP/1.1GET /api/ss/requests?limit=100 HTTP/1.1GET /api/ss/requests?cf_key_allowlist=key1&cf_key_allowlist=key2 HTTP/1.1GET /api/ss/requests?cf_key_blocklist=key1&cf_key_blocklist=key2 HTTP/1.1curl -X GET 'https://demo.attackforge.com/api/ss/requests?startDate=2021-06-03T00:00:00.000Z&endDate=2021-06-04T00:00:00.000Z&status=Pending' -H 'Host: demo.attackforge.com' -H 'X-SSAPI-KEY: ***************************************' -H 'Content-Type: application/json' -H 'Connection: close'{
"count": 999,
"requests": [
"request_id": "...",
"project_id": "...",
"request_created": "...",
"request_last_updated": "...",
"request_actioned": "...",
"request_name": "...",
"request_code": "...",
"request_status": "...",
"request_groups": [
"..."
],
"request_scope": [
"..."
],
"request_test_types_to_be_performed": [
"..."
],
"request_project_start_date": "...",
"request_project_end_date": "...",
"request_project_testing_hours": "...",
"request_onsite_testing_required": "...",
"request_created_by": "...",
"request_reason_for_testing": "...",
"request_supporting_documents": [
"..."
],
"request_custom_fields": [
{
"key": "...",
"value": "...",
}
]
]
}