Update Work Request
PUThttps://app.infodeck.io/api/organizations/:organizationId/work-requests/:workRequestId
Update work request
Request
Path Parameters
organizationId stringrequired
The ID of organization.
workRequestId stringrequired
The ID of work request.
- application/json
Body
required
isTemplate boolean
The work request is template.
subject string
The subject of work request.
description string
The description of work request.
locationId string
The location ID of work order.
images string[]
The images of work request.
priority string
The priority of work order.
Responses
- 200
- 401
- 403
- 404
- 422
- application/json
- Schema
- Example (from schema)
- Example
Schema
data objectrequired
{
"data": {
"subject": "string",
"description": "string",
"locationId": "string",
"priority": "string",
"isTemplate": true,
"assetIds": [
"string"
],
"images": [
"string"
],
"files": [
"string"
],
"createdBy": "string",
"createdAtDateString": "string",
"createdAt": "string"
}
}
{
"data": {
"subject": "IDT-WorkRequest",
"description": "IDT-WorkRequest-Description",
"locationId": "l-locationId",
"priority": "Medium",
"isTemplate": false,
"assetIds": [
"a-assetId"
],
"images": [
"Asset-Image.png"
],
"files": [
"Infodeck-Bot-0001.pdf"
],
"createdBy": "d6b0e137-xxxx-xxxx-xxxx-c944cc12a5f4",
"createdAtDateString": "2024-01-01T00:00:00.000Z",
"createdAt": 1704067200000
}
}
The request has not permission.
- application/json
- Schema
- Example (from schema)
- Example
Schema
error stringrequired
The request has not permission.
message stringrequired
The request has not permission message.
{
"error": "string",
"message": "string"
}
{
"error": "Unauthenticated",
"message": "Authentication is required and has failed or has not yet been provided."
}
The request has not permission.
- application/json
- Schema
- Example (from schema)
- Example
Schema
error stringrequired
The request has not permission.
message stringrequired
The request has not permission message.
{
"error": "string",
"message": "string"
}
{
"error": "Forbidden",
"message": "Access to the requested resource is forbidden."
}
The resource hasn't found.
- application/json
- Schema
- Example (from schema)
- Example
Schema
error stringrequired
The resource hasn't found.
message stringrequired
The resource hasn't found message.
{
"error": "string",
"message": "string"
}
{
"error": "ResourceNotFound",
"message": "The requested resource could not be found."
}
The input data has invalid.
- application/json
- Schema
- Example (from schema)
- Example
Schema
error stringrequired
The input data has invalid.
message stringrequired
The input data has invalid message.
{
"error": "string",
"message": "string"
}
{
"error": "ValidationError",
"message": "Input data validation failed."
}
Authorization: http
name: usertype: httpscheme: bearerbearerFormat: JWTdescription: Get your API token via POST /authentications/tokens
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L -X PUT 'https://app.infodeck.io/api/organizations/:organizationId/work-requests/:workRequestId' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>' \
--data-raw '{
"isTemplate": true,
"subject": "string",
"description": "string",
"locationId": "string",
"images": [
"string"
],
"priority": "string"
}'
ResponseClear