ReDoc documentation

Category Management

[EXPERIMENTAL] Endpoints for managing Categories.

Experimental Status: These endpoints have an experimental status since their complexity was impacted by a removed feature. We intend at the very least to vastly simplify these endpoints by removing the code-subresource.

[EXPERIMENTAL] Get list of all categories of an entity

[EXPERIMENTAL] This endpoint allows you to retrieve list of categories of an entity.

Securitykeycloak
Request
path Parameters
entity
required
string

The unique entity for a type

query Parameters
page
integer <int32> >= 1
Default: 1

Number of the page to retrieve, see also Paging section.

page_size
integer <int32> [ 1 .. 100 ]
Default: 10

Number of results by page, see also Paging section.

Responses
200

OK

get/categories/{entity}
Response samples
application/json
{
  • "data": [
    ],
  • "page": {
    }
}

[EXPERIMENTAL] Get a category of an entity with specified code

[EXPERIMENTAL] This endpoint allows you to get the category of an entity with a given code, including the ETag header for optimistic locking purpose

Securitykeycloak
Request
path Parameters
entity
required
string

The unique entity for a type

code
required
string

The unique identifier for a type

Responses
200

OK

404

The entity is not found

default

General error payload

get/categories/{entity}/{code}
Response samples
application/json
{
  • "entity": "location",
  • "code": "codeA",
  • "labels": {
    }
}

[EXPERIMENTAL] Create or Update a category of an entity with specified code

[EXPERIMENTAL] This endpoint allows you to create or update an existing category of an entity.

When the code does not exist, a new category will be created for the entity. No ETag header is required yet. For a given code, the properties will be overwritten and then an ETag header is required. Do remark that the code in the body of the request, must correspond with the code in the path identifier

Securitykeycloak
Request
path Parameters
entity
required
string

The unique entity for a type

code
required
string

The unique identifier for a type

header Parameters
If-Match
string

weak Etag as optimistic locking check

Request Body schema: application/json
required

Update category of an entity request body

required
object (MultiLanguages)

Descriptive labels for this category.

Responses
204

Update successful

401

Authentication required

403

Access forbidden

404

The entity is not found

412

Client error response code indicates that access to the target resource has been denied. This happens with conditional requests on methods other than GET or HEAD when the condition defined by the If-Unmodified-Since, If-Match or If-None-Match headers is not fulfilled. This is typically the case when the entity was updated by someone else before you commit your request. In that case, the request, usually a modification of a resource, cannot be executed and this error response is sent back.

put/categories/{entity}/{code}
Request samples
application/json
{
  • "labels": {
    }
}
Response samples
application/problem+json
{}

[EXPERIMENTAL] Delete an existing category of entity with specified code

[EXPERIMENTAL] This endpoint allows you to delete an existing category of an entity

A category can only be deleted when no active entities are still using it.

Securitykeycloak
Request
path Parameters
entity
required
string

The unique entity for a type

code
required
string

The unique identifier for a type

header Parameters
If-Match
string

weak Etag as optimistic locking check

Responses
204

Delete successful

401

Authentication required

403

Access forbidden

404

The entity is not found

412

Client error response code indicates that access to the target resource has been denied. This happens with conditional requests on methods other than GET or HEAD when the condition defined by the If-Unmodified-Since, If-Match or If-None-Match headers is not fulfilled. This is typically the case when the entity was updated by someone else before you commit your request. In that case, the request, usually a modification of a resource, cannot be executed and this error response is sent back.

delete/categories/{entity}/{code}
Response samples
application/problem+json
{}