(NEW!) Update Request

COMING SOON!

Use this endpoint to update an existing Request. Only send the data that you wish to change.

SecurityApiKeyAuth or BasicAuth
Request
path Parameters
id
required
string <uuid> = 36 characters

A Request ID.

Example: 4e428628-2537-40b5-91a4-5393cbf167df
header Parameters
X-API-Key
required
string

Customer-specific API key required to invoke API.

Authorization
required
string

Provided by Authentication Token creation operation

Request Body schema: application/json
required

The Request Body must be a JSON object

assignedTo
string <email>

Email of the user to whom the assets are assigned.

status
string

Use this property to update the status of the Request.

Array of objects
Responses
204

No Content. Successful Update.

401

Unauthorized. Missing Authorization or AccessToken or Access Token expired

403

Forbidden. Missing X-API-key

patch/request/{id}
Request samples
application/json
{
  • "assignedTo": "admin@tenovos.com",
  • "status": "In Progress",
  • "assets": [
    ]
}
Response samples
application/json
{
  • "message": "Unauthorized"
}