The access api endpoints allow authorized users to read, modify and delete access cards.
For more information about the architecture and core concepts of access cards, you may consult the Security component documentation.
This endpoint returns the list of access cards.
GET /accesses
Name | Type | Description | Example |
---|---|---|---|
Accept | string | The accepted returned content types. Optional. Default: application/ld+json . Options: application/json , application/ld+json . |
Accept: application/json |
Authorization | string | The JWT token. Required. | Authorization: eyJhbGciOi.eyJyb2xlcy[...].Ds34hb80Mf[...] |
Name | Type | Description | Example |
---|---|---|---|
id | integer | Filter access cards by the given id. Optional. | id=1 id[]=1&id[]=2 |
uuid | string | Filter access cards by the given uuid. Optional. | uuid=dc719883-c593-42e5-8aee-5d9367525273 uuid[]=dc719883-c593-42e5-8aee-5d9367525273&uuid[]=242e3829-9345-469a-a612-f6c432e0b4b1 |
createdAt[before] | string | Filter access cards that were created before the given date. Optional. | createdAt[before]=2018-07-20T13:19:30.181Z |
createdAt[after] | string | Filter access cards that were created after the given date. Optional. | createdAt[after]2018-07-20T13:19:30.181Z |
updatedAt[before] | string | Filter access cards that were updated before the given date. Optional. | updatedAt[before]=2018-07-20T13:19:30.181Z |
updatedAt[after] | string | Filter access cards that were updated after the given date. Optional. | updatedAt[after]=2018-07-20T13:19:30.181Z |
owner | string | Filter access cards by the given owner. Optional. | owner=BusinessUnit owner[]=BusinessUnit&owner[]=Staff |
ownerUuid | string | Filter access cards by the given owner uuid. Optional. | ownerUuid=5f4108bb-fa74-4c93-9bb1-9e37d9302640 ownerUuid[]=5f4108bb-fa74-4c93-9bb1-9e37d9302640&ownerUuid[]=0092e830-e411-47cf-b7ef-c19cc79ba8cb |
assignee | string | Filter access cards by the given assignee. Optional. | assignee=Staff assignee[]=Individual&assignee[]=Organization |
assigneeUuid | string | Filter access cards by the given assignee uuid. Optional. | assigneeUuid=c8c17ac2-3c41-491d-888c-459f13b97d3c assigneeUuid[]=c8c17ac2-3c41-491d-888c-459f13b97d3c&assigneeUuid[]=54be68f2-1043-4614-846b-6a1638abae4e |
page | integer | The current page in the pagination. Optional. Default: 1 . |
page=2 |
limit | integer | The number of items per page. Optional. Default: 10 . |
limit=25 |
order[id] | string | Order access cards by id. Optional. Options: asc , desc . |
order[id]=asc |
order[createdAt] | string | Order access cards by creation date. Optional. Options: asc , desc . |
order[createdAt]=asc |
order[updatedAt] | string | Order access cards by modification date. Optional. Options: asc , desc . |
order[updatedAt]=asc |
order[owner] | string | Order forms by owner. Optional. | order[owner]=asc |
order[assignee] | string | Order forms by assignee. Optional. | order[assignee]=asc |
The request was successful and returns a JSON array of objects. Each object contains the following properties:
Name | Type | Description |
---|---|---|
id | integer | The access card id. |
uuid | string | The access card uuid. |
createdAt | string | The date the access card was created on. |
updatedAt | string | The date the access card was updated at. |
owner | string | The access card owner. |
ownerUuid | string | The access card owner uuid. |
assignee | string | The access card assignee. |
assigneeUuid | string | The access card assignee uuid. |
permissions | array | The access card granted permissions. |
version | integer | The access card version. This value is used for optimistic locking. |
tenant | string | The access card tenant uuid. |
Method:
GET /accesses
Headers:
Accept: application/json
Code:
200 OK
Body:
[
{
"id": 1,
"uuid": "dc719883-c593-42e5-8aee-5d9367525273",
"createdAt": "2018-07-31T14:57:10+00:00",
"updatedAt": "2018-07-31T14:57:10+00:00",
"owner": "BusinessUnit",
"ownerUuid": "5f4108bb-fa74-4c93-9bb1-9e37d9302640",
"assignee": "Staff",
"assigneeUuid": "c8c17ac2-3c41-491d-888c-459f13b97d3c",
"permissions": [
{
"scope": "owner",
"entity": "BusinessUnit",
"entityUuid": "5f4108bb-fa74-4c93-9bb1-9e37d9302640",
"key": "config",
"attributes": ["EDIT"]
}
],
"version": 1,
"tenant": "d928b020-94f6-4928-a510-04fc49d5a174"
},
{
"id": 2,
"uuid": "242e3829-9345-469a-a612-f6c432e0b4b1",
"createdAt": "2018-07-31T14:57:10+00:00",
"updatedAt": "2018-07-31T14:57:10+00:00",
"owner": "BusinessUnit",
"ownerUuid": "5f4108bb-fa74-4c93-9bb1-9e37d9302640",
"assignee": "Staff",
"assigneeUuid": "54be68f2-1043-4614-846b-6a1638abae4e",
"permissions": [
{
"scope": "owner",
"entity": "BusinessUnit",
"entityUuid": "5f4108bb-fa74-4c93-9bb1-9e37d9302640",
"key": "config",
"attributes": ["BROWSE", "READ"]
}
],
"version": 1,
"tenant": "d928b020-94f6-4928-a510-04fc49d5a174"
}
]
This endpoint returns a specific access card.
GET /accesses/{uuid}
Name | Type | Description | Example |
---|---|---|---|
Accept | string | The accepted returned content types. Optional. Default: application/ld+json . Options: application/json , application/ld+json . |
Accept: application/json |
Authorization | string | The JWT token. Required. | Authorization: eyJhbGciOi.eyJyb2xlcy[...].Ds34hb80Mf[...] |
Name | Type | Description | Example |
---|---|---|---|
uuid | string | The uuid of the access card. Required. | dc719883-c593-42e5-8aee-5d9367525273 |
The request was successful and returns a JSON object that contains the following properties:
Name | Type | Description |
---|---|---|
id | integer | The access card id. |
uuid | string | The access card uuid. |
createdAt | string | The date the access card was created on. |
updatedAt | string | The date the access card was updated at. |
owner | string | The access card owner. |
ownerUuid | string | The access card owner uuid. |
assignee | string | The access card assignee. |
assigneeUuid | string | The access card assignee uuid. |
permissions | array | The access card granted permissions. |
version | integer | The access card version. This value is used for optimistic locking. |
tenant | string | The access card tenant uuid. |
The request was unsuccessful and returns a JSON object that contains the following properties:
Name | Type | Description |
---|---|---|
type | string | The error type. |
title | string | The error title message. |
detail | string | The error detail description. |
Method:
GET /accesses/dc719883-c593-42e5-8aee-5d9367525273
Headers:
Accept: application/json
Code:
200 OK
Body:
{
"id": 1,
"uuid": "dc719883-c593-42e5-8aee-5d9367525273",
"createdAt": "2018-07-31T14:57:10+00:00",
"updatedAt": "2018-07-31T14:57:10+00:00",
"owner": "BusinessUnit",
"ownerUuid": "5f4108bb-fa74-4c93-9bb1-9e37d9302640",
"assignee": "Staff",
"assigneeUuid": "c8c17ac2-3c41-491d-888c-459f13b97d3c",
"permissions": [
{
"scope": "owner",
"entity": "BusinessUnit",
"entityUuid": "5f4108bb-fa74-4c93-9bb1-9e37d9302640",
"key": "config",
"attributes": ["EDIT"]
}
],
"version": 1,
"tenant": "d928b020-94f6-4928-a510-04fc49d5a174"
}
This endpoint adds an access card to the list.
POST /accesses
Name | Type | Description | Example |
---|---|---|---|
Content-Type | string | The accepted returned content types. Options: application/json . |
Content-Type: application/json |
Accept | string | The accepted returned content types. Optional. Default: application/ld+json . Options: application/json , application/ld+json . |
Accept: application/json |
Authorization | string | The JWT token. Required. | Authorization: eyJhbGciOi.eyJyb2xlcy[...].Ds34hb80Mf[...] |
A JSON object that contains the following properties:
Name | Type | Description | Example |
---|---|---|---|
uuid | string | The access card uuid. Optional. Default: auto-generated. | dc719883-c593-42e5-8aee-5d9367525273 |
owner | string | The access card owner. Required. | BusinessUnit |
ownerUuid | string | The access card owner uuid. Optional. Default: null . |
5f4108bb-fa74-4c93-9bb1-9e37d9302640 |
assignee | string | The access card assignee. Required. | BusinessUnit |
assigneeUuid | string | The access card assignee uuid. Optional. Default: null . |
c8c17ac2-3c41-491d-888c-459f13b97d3c |
permissions | array | The access card granted permissions. Optional. Default: [] . |
|
version | integer | The access card version. This value is used for optimistic locking. Required. | 1 |
The request was successful and returns a JSON object that contains the following properties:
Name | Type | Description |
---|---|---|
id | integer | The access card id. |
uuid | string | The access card uuid. |
createdAt | string | The date the access card was created on. |
updatedAt | string | The date the access card was update at. |
owner | string | The access card owner. |
ownerUuid | string | The access card owner uuid. |
assignee | string | The access card assignee. |
assigneeUuid | string | The access card assignee uuid. |
permissions | array | The access card granted permissions. |
version | integer | The access card version. This value is used for optimistic locking. |
tenant | string | The access card tenant uuid. |
The request was unsuccessful and and returns a JSON object that contains the following properties:
Name | Type | Description |
---|---|---|
type | string | The error type. |
title | string | The error title message. |
detail | string | The error detail description. |
violations | array | The array of violations. |
Method:
POST /accesses
Headers:
Content-Type: application/json
Accept: application/json
Body:
{
"owner": "BusinessUnit",
"ownerUuid": "5f4108bb-fa74-4c93-9bb1-9e37d9302640",
"assignee": "Staff",
"assigneeUuid": "c8c17ac2-3c41-491d-888c-459f13b97d3c",
"permissions": [
{
"scope": "owner",
"entity": "BusinessUnit",
"entityUuid": "5f4108bb-fa74-4c93-9bb1-9e37d9302640",
"key": "config",
"attributes": ["EDIT"]
}
],
"version": 1
}
Code:
200 OK
Body:
{
"id": 1,
"uuid": "dc719883-c593-42e5-8aee-5d9367525273",
"createdAt": "2018-07-19T12:08:30+00:00",
"updatedAt": "2018-07-19T12:08:30+00:00",
"owner": "BusinessUnit",
"ownerUuid": "5f4108bb-fa74-4c93-9bb1-9e37d9302640",
"assignee": "Staff",
"assigneeUuid": "c8c17ac2-3c41-491d-888c-459f13b97d3c",
"permissions": [
{
"scope": "owner",
"entity": "BusinessUnit",
"entityUuid": "5f4108bb-fa74-4c93-9bb1-9e37d9302640",
"key": "config",
"attributes": ["EDIT"]
}
],
"version": 1,
"tenant": "d928b020-94f6-4928-a510-04fc49d5a174"
}
This endpoint edits a specific access card.
PUT /accesses/{uuid}
Name | Type | Description | Example |
---|---|---|---|
Content-Type | string | The accepted returned content types. Options: application/json . |
Content-Type: application/json |
Accept | string | The accepted returned content types. Optional. Default: application/ld+json . Options: application/json , application/ld+json . |
Accept: application/json |
Authorization | string | The JWT token. Required. | Authorization: eyJhbGciOi.eyJyb2xlcy[...].Ds34hb80Mf[...] |
Name | Type | Description | Example |
---|---|---|---|
uuid | string | The uuid of the access card. Required. | dc719883-c593-42e5-8aee-5d9367525273 |
A JSON object that contains the following properties:
Name | Type | Description | Example |
---|---|---|---|
uuid | string | The access card uuid. Optional. Default: auto-generated. | dc719883-c593-42e5-8aee-5d9367525273 |
owner | string | The access card owner. Required. | BusinessUnit |
ownerUuid | string | The access card owner uuid. Optional. Default: null . |
5f4108bb-fa74-4c93-9bb1-9e37d9302640 |
assignee | string | The access card assignee. Required. | BusinessUnit |
assigneeUuid | string | The access card assignee uuid. Optional. Default: null . |
c8c17ac2-3c41-491d-888c-459f13b97d3c |
permissions | array | The access card granted permissions. Optional. Default: [] . |
|
version | integer | The access card version. This value is used for optimistic locking. Required. | 1 |
The request was successful and returns a JSON object that contains the following properties:
Name | Type | Description |
---|---|---|
id | integer | The access card id. |
uuid | string | The access card uuid. |
createdAt | string | The date the access card was created on. |
updatedAt | string | The date the access card was update at. |
owner | string | The access card owner. |
ownerUuid | string | The access card owner uuid. |
assignee | string | The access card assignee. |
assigneeUuid | string | The access card assignee uuid. |
permissions | array | The access card granted permissions. |
version | integer | The access card version. This value is used for optimistic locking. |
tenant | string | The access card tenant uuid. |
The request was unsuccessful and returns a JSON object that contains the following properties:
Name | Type | Description |
---|---|---|
type | string | The error type. |
title | string | The error title message. |
detail | string | The error compiled violations. |
violations | array | The array of violations. |
Method:
PUT /accesses/dc719883-c593-42e5-8aee-5d9367525273
Headers:
Content-Type: application/json
Accept: application/json
Body:
{
"permissions": [
{
"scope": "owner",
"entity": "BusinessUnit",
"entityUuid": "5f4108bb-fa74-4c93-9bb1-9e37d9302640",
"key": "config",
"attributes": ["BROWSE", "READ"]
}
],
"version": 1
}
Code:
200 OK
Body:
{
"id": 1,
"uuid": "dc719883-c593-42e5-8aee-5d9367525273",
"createdAt": "2018-07-31T14:57:10+00:00",
"updatedAt": "2018-08-01T12:30:15+00:00",
"owner": "BusinessUnit",
"ownerUuid": "5f4108bb-fa74-4c93-9bb1-9e37d9302640",
"assignee": "Staff",
"assigneeUuid": "c8c17ac2-3c41-491d-888c-459f13b97d3c",
"permissions": [
{
"scope": "owner",
"entity": "BusinessUnit",
"entityUuid": "5f4108bb-fa74-4c93-9bb1-9e37d9302640",
"key": "config",
"attributes": ["BROWSE", "READ"]
}
],
"version": 1,
"tenant": "d928b020-94f6-4928-a510-04fc49d5a174"
}
This endpoint deletes a specific access card from the list.
DELETE /accesses/{uuid}
Name | Type | Description | Example |
---|---|---|---|
Authorization | string | The JWT token. Required. | Authorization: eyJhbGciOi.eyJyb2xlcy[...].Ds34hb80Mf[...] |
Name | Type | Description | Example |
---|---|---|---|
uuid | string | The uuid of the access card. Required. | dc719883-c593-42e5-8aee-5d9367525273 |
The request was successful and returns no content.
Method:
DELETE /accesses/dc719883-c593-42e5-8aee-5d9367525273
Code:
204 No Content
Body: