UpdateProjectRequestById

This method can be used for the following functionality: Update a project request that you have access to, by project request identifier (Id).

Parameters

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.

Headers

PUT /api/ss/request/:id HTTP/1.1
Host: demo.attackforge.com
X-SSAPI-KEY: APIKey
Content-Type: application/json
Connection: close

Query

id (string)

Identifier for the project request.

Example:

PUT /api/ss/request/5e8017d2e1385f0c58e8f4f8 HTTP/1.1

name (string) (optional)

Name of the project.

Example:

code (string) (optional)

Project code.

Example:

groups (array of strings) (optional)

Groups to link to the project. Must match exact group names.

Example:

scope (array of strings) (optional)

Project scope / assets to be tested.

Example:

testsuites (array of strings) (optional)

Testsuites to assign to the project. Must match exact testsuite names.

Example:

startDate (string) (optional)

Desired project start date. Must be UTC string e.g. 2021-06-03T23:15:33.008Z.

Example:

endDate (string) (optional)

Desired project end date. Must be UTC string e.g. 2021-06-03T23:15:33.008Z.

Example:

test_window (array of strings) (optional)

Test window for the project. Must be one or more of the following: Weekdays-BusinessHours, Weekdays-NonBusinessHours, Weekends

Example:

onsite_testing (string) (optional)

Whether onsite testing is required or not. Must be one or more of the following: Yes, No

Example:

reason_for_testing (string) (optional)

Reason or justification for testing.

Example:

organization_code (string) (optional)

Organization code.

Example:

custom_fields (array of objects) (optional)

Custom fields. Must include a key and value. Key must be unique and letters, numbers and underscores only.

For more information visit https://support.attackforge.com/attackforge-enterprise/getting-started/custom-fields-and-forms#using-custom-fields-with-apis

Example:

Example

The following example is a cURL request to update a project request.

Request

Include API Token instead of stars in 'X-SSAPI-KEY: ***************************************' parameter.

Response

Response contains a result object.

Last updated