Update a document type property
PATCH
https://api.expirationreminder.net/v1/categories/{id}Path Parameters
id
string
RequiredRequest Body
Sample Request
[
{
"operationType": "0",
"path": "string",
"op": "string",
"from": "string",
"value": null
}
]PATCH /v1/categories/{id}
$ curl https://api.expirationreminder.net/v1/categories/{id} \
-H "Authorization: Bearer <token>"
Responses
| Property | Type | Description |
|---|---|---|
name |
string |
- |
id |
string (uuid) |
- |
modified |
string |
- |
is_active |
boolean |
- |
team_id |
string (uuid) |
- |
custom_fields |
object[] |
- |
Example Response
{
"name": "string",
"id": "00000000-0000-0000-0000-000000000000",
"modified": "string",
"is_active": false,
"team_id": "00000000-0000-0000-0000-000000000000",
"custom_fields": [
{
"id": "00000000-0000-0000-0000-000000000000",
"name": "string",
"internal_name": "string"
}
]
}Not Modified
| Property | Type | Description |
|---|---|---|
message |
string |
- |
ok |
boolean |
- |
Example Response
{
"message": "string",
"ok": false
}Not Found
| Property | Type | Description |
|---|---|---|
message |
string |
- |
ok |
boolean |
- |
Example Response
{
"message": "string",
"ok": false
}Conflict
| Property | Type | Description |
|---|---|---|
message |
string |
- |
ok |
boolean |
- |
Example Response
{
"message": "string",
"ok": false
}