Delete a project metadata
DELETE/api/project-metadata/:id
- settings.company: allows to delete resources.
Here the dedicated support page.
Request
Path Parameters
id integerrequired
The ID of the project metadata to delete
Header Parameters
Wethod-Company stringrequired
The company you want to interact with
Wethod-Version stringrequired
The API version you want to use
Responses
- 200
- 401
- 404
Project metadata successfully deleted.
- application/json
- Schema
- Example (from schema)
Schema
id integerrequired
Possible values: >= 1
created_at date-timerequired
updated_at date-timerequired
key stringrequired
values string[]required
is_required booleanrequired
{
"id": 1,
"created_at": "2025-02-13T09:26:18.651Z",
"updated_at": "2025-02-13T09:26:18.651Z",
"key": "Sector",
"values": [
"IT",
"Finance"
],
"is_required": true
}
Unauthorized
- application/json
- Schema
- Example (from schema)
Schema
key string
Error unique key
message string
Human-readable message describing the error
{
"key": "string",
"message": "string"
}
Not found
- application/json
- Schema
- Example (from schema)
Schema
key string
Error unique key
message string
Human-readable message describing the error
{
"key": "not_found",
"message": "string"
}
Loading...