Organization Metadata Options
Retrieves a paginated list of organization metadata options for the specified organization metadata.
Retrieves a paginated list of organization metadata options for the specified organization metadata, optionally filtered and sorted.
Bearer authentication with JWT
The unique identifier of the organization metadata.
The page number to retrieve.
The number of items per page.
Optional search text to filter options.
The sorting option for the results.
Whether to sort in descending order.
trueOK
Forbidden
GET /projects/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.
Bearer authentication with JWT
The unique identifier of the organization metadata.
Created
Bad Request
Forbidden
POST /projects/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 an organization metadata option by its object identifier.
Bearer authentication with JWT
The unique identifier of the organization metadata option to retrieve.
OK
Forbidden
Not Found
GET /projects/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 an organization metadata option.
Bearer authentication with JWT
The unique identifier of the organization metadata option to update.
OK
Bad Request
Forbidden
Not Found
PUT /projects/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 by its object identifier.
Bearer authentication with JWT
The unique identifier of the organization metadata option to delete.
No Content
Forbidden
Not Found
DELETE /projects/organization-metadata/{organizationMetadataIdentifier}/options/{objectIdentifier} HTTP/1.1
Host: api.example.uk.jylo.ai
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
No content
Last updated