API Sections Resource types Resource type Resources
Update the resource, the table below details the fields and their data type
URL : /v3/resource-types/{resource_type_id}/resources/{resource_id}
Method : PATCH
Fields :
Name | Type | Description |
---|---|---|
name | string | The name of the resource type |
description | string | A description of the resource type |
data | json | An optional json object |
Code : 204
No Content
Code : 404
Content :
{
"message": "Resource can't be found."
}
Code : 403
Content :
{
"message": "Resource can't be found or is not accessible to you."
}
Code : 400
Content :
{
"message": "Unable to handle your request, please include a request body."
}
Code : 422
Content :
{
"message": "Validation error.",
"fields": {
"name": {
"errors": [
"The name must be a string."
]
},
"description": {
"errors": [
"The description field is required."
]
}
}
}