Organization Metadata Options
Retrieves a paginated list of all organization metadata options for the specified organization metadata entry, with optional search and sorting.
Bearer authentication with JWT
The identifier of the organization metadata entry.
The page number for paginated results.
The number of items per page.
Optional search text to filter results.
The sorting option for the results.
Whether to sort in descending order.
trueOK
Forbidden
GET /playbooks/organization-metadata/{organizationMetadataIdentifier}/options HTTP/1.1
Host: api.example.uk.jylo.ai
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
[
{
"name": "text",
"objectIdentifier": "123e4567-e89b-12d3-a456-426614174000"
}
]Creates a new organization metadata option for the specified organization metadata entry.
Bearer authentication with JWT
The identifier of the organization metadata entry.
Created
Bad Request
Forbidden
POST /playbooks/organization-metadata/{organizationMetadataIdentifier}/options HTTP/1.1
Host: api.example.uk.jylo.ai
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 15
{
"name": "text"
}{
"name": "text",
"objectIdentifier": "123e4567-e89b-12d3-a456-426614174000"
}Retrieves the details of an organization metadata option for playbooks using its object identifier.
Bearer authentication with JWT
The object identifier of the option.
OK
Forbidden
Not Found
GET /playbooks/organization-metadata/{organizationMetadataIdentifier}/options/{objectIdentifier} HTTP/1.1
Host: api.example.uk.jylo.ai
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"name": "text",
"objectIdentifier": "123e4567-e89b-12d3-a456-426614174000"
}Updates the details of an existing organization metadata option for playbooks using its object identifier.
Bearer authentication with JWT
The object identifier of the option to update.
OK
Bad Request
Forbidden
Not Found
PUT /playbooks/organization-metadata/{organizationMetadataIdentifier}/options/{objectIdentifier} HTTP/1.1
Host: api.example.uk.jylo.ai
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 15
{
"name": "text"
}{
"name": "text",
"objectIdentifier": "123e4567-e89b-12d3-a456-426614174000"
}Deletes an organization metadata option for playbooks using its object identifier.
Bearer authentication with JWT
The object identifier of the option to delete.
No Content
Forbidden
Not Found
DELETE /playbooks/organization-metadata/{organizationMetadataIdentifier}/options/{objectIdentifier} HTTP/1.1
Host: api.example.uk.jylo.ai
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
No content
Last updated