ApplicationPermissions
Get details of a specific application permission
Unique identifier of the resource
1Application permission details
Forbidden
The given resource or object was not found or does not exist.
GET /api/v1/application_permissions/{id}/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
{
"pk": 1,
"name": "Instore application permission for store staff",
"path": "/test/path",
"label": "update",
"parent": 2,
"application": 1,
"created_date": "2025-12-01T11:42:57.343Z",
"modified_date": "2025-12-01T11:42:57.343Z"
}Updates an existing Application Permission object.
Unique identifier of the resource
1The name of the application permission.
Instore application permission for store staffThe path of the application permission.
/test/pathThe label of the application permission.
updateUnique identifier for the parent application permission.
2Unique identifier for the related application.
1Application Permission Updated
Required field(s) are missing, data is invalid, or the action is not allowed.
Unauthorized Access
The given resource or object was not found or does not exist.
PUT /api/v1/application_permissions/{id}/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 121
{
"name": "Instore application permission for store staff",
"path": "/test/path",
"label": "update",
"parent": 2,
"application": 1
}{
"pk": 1,
"name": "Instore application permission for store staff",
"path": "/test/path",
"label": "update",
"parent": 2,
"application": 1,
"created_date": "2025-12-01T11:42:57.343Z",
"modified_date": "2025-12-01T11:42:57.343Z"
}Deletes an existing Application Permission object.
Unique identifier of the resource
1Application Permission Deleted
Required field(s) are missing, data is invalid, or the action is not allowed.
Unauthorized Access
The given resource or object was not found or does not exist.
Server Error
DELETE /api/v1/application_permissions/{id}/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
No content
Partially updates an existing Application Permission object.
Unique identifier of the resource
1The name of the application permission.
Instore application permission for store staffThe path of the application permission.
/test/pathThe label of the application permission.
updateUnique identifier for the parent application permission.
2Unique identifier for the related application.
1Application Permission Partially Updated
Required field(s) are missing, data is invalid, or the action is not allowed.
Unauthorized Access
The given resource or object was not found or does not exist.
PATCH /api/v1/application_permissions/{id}/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 121
{
"name": "Instore application permission for store staff",
"path": "/test/path",
"label": "update",
"parent": 2,
"application": 1
}{
"pk": 1,
"name": "Instore application permission for store staff",
"path": "/test/path",
"label": "update",
"parent": 2,
"application": 1,
"created_date": "2025-12-01T11:42:57.343Z",
"modified_date": "2025-12-01T11:42:57.343Z"
}Get detailed information of a specific application permission
Unique identifier of the resource
1Detailed application permission details
Forbidden
The given resource or object was not found or does not exist.
GET /api/v1/application_permissions/{id}/detailed/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
{
"pk": 1,
"name": "Instore application permission for store staff",
"path": "/test/path",
"label": "update",
"parent": {
"pk": 1,
"name": "Instore application permission for store staff",
"path": "/test/path",
"label": "update",
"parent": 2,
"application": 1,
"created_date": "2025-12-01T11:42:57.343Z",
"modified_date": "2025-12-01T11:42:57.343Z"
},
"application": 1,
"created_date": "2025-12-01T11:42:57.343Z",
"modified_date": "2025-12-01T11:42:57.343Z"
}Get a list of all application permissions
Specifies the page number of the current dataset
1Indicates the number of rows on the current page.
10Filters by name
Filter by application ID.
Filter by path
Filter by parent product ID.
The display label of the attribute value
ColorList of application permissions
Forbidden
GET /api/v1/application_permissions/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
{
"count": 0,
"next": "text",
"previous": "text",
"results": [
{
"created_date": "2025-12-01T11:42:57.343Z",
"modified_date": "2025-12-01T11:42:57.343Z"
}
]
}Creates a new Application Permission object.
The name of the application permission.
Instore application permission for store staffThe path of the application permission.
/test/pathThe label of the application permission.
updateUnique identifier for the parent application permission.
2Unique identifier for the related application.
1Application Permission Created
Required field(s) are missing, data is invalid, or the action is not allowed.
Unauthorized Access
The given resource or object was not found or does not exist.
Server Error
POST /api/v1/application_permissions/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 121
{
"name": "Instore application permission for store staff",
"path": "/test/path",
"label": "update",
"parent": 2,
"application": 1
}{
"pk": 1,
"name": "Instore application permission for store staff",
"path": "/test/path",
"label": "update",
"parent": 2,
"application": 1,
"created_date": "2025-12-01T11:42:57.343Z",
"modified_date": "2025-12-01T11:42:57.343Z"
}Get a list of all application permissions with details
Specifies the page number of the current dataset
1Indicates the number of rows on the current page.
10Filters by name
Filter by application ID.
Filter by path
Filter by parent product ID.
The display label of the attribute value
ColorList of application permissions with details
GET /api/v1/application_permissions/detailed HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
List of application permissions with details
{
"count": 0,
"next": "text",
"previous": "text",
"results": [
{
"created_date": "2025-12-01T11:42:57.343Z",
"modified_date": "2025-12-01T11:42:57.343Z"
}
]
}Get a list of all application permission children
Specifies the page number of the current dataset
1Indicates the number of rows on the current page.
10Filter by application ID.
Filter by path
Filter by parent product ID.
The display label of the attribute value
ColorFilters by name
List of application permission children
Forbidden
GET /api/v1/application_permissions/children/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
[
{
"pk": 1,
"name": "Instore application permission for store staff",
"path": "/test/path",
"label": "update",
"parent": 2,
"application": 1,
"created_date": "2025-12-01T11:42:57.343Z",
"modified_date": "2025-12-01T11:42:57.343Z"
}
]Was this helpful?

