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