Identifiers API 1.6.0
Identifiers, card numbers and identifier-related operations.
Base path: https://{controller_ip}/api/v1.
API description version: 1.6.0.
Examples use placeholder values for passwords, tokens, UUIDs, addresses and secrets. Replace them with values from your controller before sending requests.
Section methods
GET /identifier/generate
Section: Identifiers.
Returns data for the identifiers endpoint /identifier/generate.
Request example
curl -k -X GET "https://{controller_ip}/api/v1/identifier/generate" \
-H "Authorization: Bearer <token>"
Response command example
curl -k -sS -X GET "https://{controller_ip}/api/v1/identifier/generate" \
-H "Authorization: Bearer <token>" | jq .
Response example
{
"data": [],
"meta": {
"api_version": "1.6.0",
"path": "/identifier/generate"
}
}
GET /identifier/{code}
Section: Identifiers.
Returns data for the identifiers endpoint /identifier/{code}.
Request example
curl -k -X GET "https://{controller_ip}/api/v1/identifier/{code}" \
-H "Authorization: Bearer <token>"
Response command example
curl -k -sS -X GET "https://{controller_ip}/api/v1/identifier/{code}" \
-H "Authorization: Bearer <token>" | jq .
Response example
{
"data": [],
"meta": {
"api_version": "1.6.0",
"path": "/identifier/{code}"
}
}
GET /identifiers
Section: Identifiers.
Returns data for the identifiers endpoint /identifiers.
Request example
curl -k -X GET "https://{controller_ip}/api/v1/identifiers" \
-H "Authorization: Bearer <token>"
Response command example
curl -k -sS -X GET "https://{controller_ip}/api/v1/identifiers" \
-H "Authorization: Bearer <token>" | jq .
Response example
{
"data": [],
"meta": {
"api_version": "1.6.0",
"path": "/identifiers"
}
}