# ApplicationPermissions

## Retrieve application permission

> Get details of a specific application permission

```json
{"openapi":"3.0.3","info":{"title":"Omnitron API","version":"1.0.0"},"security":[{"Token":[]}],"components":{"securitySchemes":{"Token":{"type":"apiKey","in":"header","name":"Authorization"}},"parameters":{"id_path":{"name":"id","in":"path","description":"Unique identifier of the resource","required":true,"schema":{"type":"integer"}}},"schemas":{"ApplicationPermission":{"type":"object","allOf":[{"$ref":"#/components/schemas/StarterModel"}],"properties":{"pk":{"type":"integer","description":"Primary key for the application permission."},"name":{"type":"string","description":"The name of the application permission."},"path":{"type":"string","description":"The path of the application permission."},"label":{"type":"string","description":"The label of the application permission."},"parent":{"type":"integer","description":"Unique identifier for the parent application permission."},"application":{"type":"integer","description":"Unique identifier for the related application."}}},"StarterModel":{"type":"object","properties":{"created_date":{"type":"string","format":"date-time","readOnly":true,"description":"The date and time when the object was created."},"modified_date":{"type":"string","format":"date-time","description":"The date and time when the object was last modified."}}}},"responses":{"403":{"description":"Forbidden"},"404":{"description":"The given resource or object was not found or does not exist.","content":{"application/json":{"schema":{"type":"object","properties":{"detail":{"description":"Contains a detailed description of the error.","type":"string"}}}}}}}},"paths":{"/api/v1/application_permissions/{id}/":{"get":{"tags":["ApplicationPermissions"],"summary":"Retrieve application permission","description":"Get details of a specific application permission","operationId":"retrieve_application_permission","parameters":[{"$ref":"#/components/parameters/id_path"}],"responses":{"200":{"description":"Application permission details","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApplicationPermission"}}}},"403":{"$ref":"#/components/responses/403"},"404":{"$ref":"#/components/responses/404"}}}}}}
```

## Update Application Permission

> Updates an existing Application Permission object.

```json
{"openapi":"3.0.3","info":{"title":"Omnitron API","version":"1.0.0"},"security":[{"Token":[]}],"components":{"securitySchemes":{"Token":{"type":"apiKey","in":"header","name":"Authorization"}},"parameters":{"id_path":{"name":"id","in":"path","description":"Unique identifier of the resource","required":true,"schema":{"type":"integer"}}},"schemas":{"ApplicationPermissionUpdate":{"type":"object","properties":{"name":{"type":"string","description":"The name of the application permission."},"path":{"type":"string","description":"The path of the application permission."},"label":{"type":"string","description":"The label of the application permission."},"parent":{"type":"integer","description":"Unique identifier for the parent application permission."},"application":{"type":"integer","description":"Unique identifier for the related application."}}},"ApplicationPermission":{"type":"object","allOf":[{"$ref":"#/components/schemas/StarterModel"}],"properties":{"pk":{"type":"integer","description":"Primary key for the application permission."},"name":{"type":"string","description":"The name of the application permission."},"path":{"type":"string","description":"The path of the application permission."},"label":{"type":"string","description":"The label of the application permission."},"parent":{"type":"integer","description":"Unique identifier for the parent application permission."},"application":{"type":"integer","description":"Unique identifier for the related application."}}},"StarterModel":{"type":"object","properties":{"created_date":{"type":"string","format":"date-time","readOnly":true,"description":"The date and time when the object was created."},"modified_date":{"type":"string","format":"date-time","description":"The date and time when the object was last modified."}}}},"responses":{"400":{"description":"Required field(s) are missing, data is invalid, or the action is not allowed.","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"field":{"oneOf":[{"type":"array","description":"Indicates that no value was provided for the {field} field in the request.","items":{"type":"string"}},{"type":"array","description":"Indicates usage of a non-existent object for {field} in the request.","items":{"type":"string"}}]},"code":{"type":"string","description":"Represents the server-side error code."}}},{"type":"object","properties":{"non_field_errors":{"description":"Indicates invalid data or action usage in the request.","type":"array","items":{"type":"string"}},"code":{"type":"string","description":"Represents the server-side error code."}}},{"type":"object","properties":{"detail":{"description":"Provides a detailed message for the given error.","type":"string"},"code":{"type":"string","description":"Represents the server-side error code."}}}]}}}},"401":{"description":"Unauthorized Access","content":{"application/json":{"schema":{"type":"object","properties":{"detail":{"type":"string","description":"Contains a detailed description of the error."},"code":{"type":"string","description":"Represents the server-side error code."}}}}}},"404":{"description":"The given resource or object was not found or does not exist.","content":{"application/json":{"schema":{"type":"object","properties":{"detail":{"description":"Contains a detailed description of the error.","type":"string"}}}}}}}},"paths":{"/api/v1/application_permissions/{id}/":{"put":{"tags":["ApplicationPermissions"],"summary":"Update Application Permission","description":"Updates an existing Application Permission object.","parameters":[{"$ref":"#/components/parameters/id_path"}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApplicationPermissionUpdate"}}}},"responses":{"200":{"description":"Application Permission Updated","content":{"application/json":{"schema":{"type":"object","$ref":"#/components/schemas/ApplicationPermission"}}}},"400":{"$ref":"#/components/responses/400"},"401":{"$ref":"#/components/responses/401"},"404":{"$ref":"#/components/responses/404"}}}}}}
```

## Delete Application Permission

> Deletes an existing Application Permission object.

```json
{"openapi":"3.0.3","info":{"title":"Omnitron API","version":"1.0.0"},"security":[{"Token":[]}],"components":{"securitySchemes":{"Token":{"type":"apiKey","in":"header","name":"Authorization"}},"parameters":{"id_path":{"name":"id","in":"path","description":"Unique identifier of the resource","required":true,"schema":{"type":"integer"}}},"responses":{"400":{"description":"Required field(s) are missing, data is invalid, or the action is not allowed.","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"field":{"oneOf":[{"type":"array","description":"Indicates that no value was provided for the {field} field in the request.","items":{"type":"string"}},{"type":"array","description":"Indicates usage of a non-existent object for {field} in the request.","items":{"type":"string"}}]},"code":{"type":"string","description":"Represents the server-side error code."}}},{"type":"object","properties":{"non_field_errors":{"description":"Indicates invalid data or action usage in the request.","type":"array","items":{"type":"string"}},"code":{"type":"string","description":"Represents the server-side error code."}}},{"type":"object","properties":{"detail":{"description":"Provides a detailed message for the given error.","type":"string"},"code":{"type":"string","description":"Represents the server-side error code."}}}]}}}},"401":{"description":"Unauthorized Access","content":{"application/json":{"schema":{"type":"object","properties":{"detail":{"type":"string","description":"Contains a detailed description of the error."},"code":{"type":"string","description":"Represents the server-side error code."}}}}}},"404":{"description":"The given resource or object was not found or does not exist.","content":{"application/json":{"schema":{"type":"object","properties":{"detail":{"description":"Contains a detailed description of the error.","type":"string"}}}}}},"500":{"description":"Server Error"}}},"paths":{"/api/v1/application_permissions/{id}/":{"delete":{"tags":["ApplicationPermissions"],"summary":"Delete Application Permission","description":"Deletes an existing Application Permission object.","parameters":[{"$ref":"#/components/parameters/id_path"}],"responses":{"204":{"description":"Application Permission Deleted"},"400":{"$ref":"#/components/responses/400"},"401":{"$ref":"#/components/responses/401"},"404":{"$ref":"#/components/responses/404"},"500":{"$ref":"#/components/responses/500"}}}}}}
```

## Partially Update Application Permission

> Partially updates an existing Application Permission object.

```json
{"openapi":"3.0.3","info":{"title":"Omnitron API","version":"1.0.0"},"security":[{"Token":[]}],"components":{"securitySchemes":{"Token":{"type":"apiKey","in":"header","name":"Authorization"}},"parameters":{"id_path":{"name":"id","in":"path","description":"Unique identifier of the resource","required":true,"schema":{"type":"integer"}}},"schemas":{"ApplicationPermissionUpdate":{"type":"object","properties":{"name":{"type":"string","description":"The name of the application permission."},"path":{"type":"string","description":"The path of the application permission."},"label":{"type":"string","description":"The label of the application permission."},"parent":{"type":"integer","description":"Unique identifier for the parent application permission."},"application":{"type":"integer","description":"Unique identifier for the related application."}}},"ApplicationPermission":{"type":"object","allOf":[{"$ref":"#/components/schemas/StarterModel"}],"properties":{"pk":{"type":"integer","description":"Primary key for the application permission."},"name":{"type":"string","description":"The name of the application permission."},"path":{"type":"string","description":"The path of the application permission."},"label":{"type":"string","description":"The label of the application permission."},"parent":{"type":"integer","description":"Unique identifier for the parent application permission."},"application":{"type":"integer","description":"Unique identifier for the related application."}}},"StarterModel":{"type":"object","properties":{"created_date":{"type":"string","format":"date-time","readOnly":true,"description":"The date and time when the object was created."},"modified_date":{"type":"string","format":"date-time","description":"The date and time when the object was last modified."}}}},"responses":{"400":{"description":"Required field(s) are missing, data is invalid, or the action is not allowed.","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"field":{"oneOf":[{"type":"array","description":"Indicates that no value was provided for the {field} field in the request.","items":{"type":"string"}},{"type":"array","description":"Indicates usage of a non-existent object for {field} in the request.","items":{"type":"string"}}]},"code":{"type":"string","description":"Represents the server-side error code."}}},{"type":"object","properties":{"non_field_errors":{"description":"Indicates invalid data or action usage in the request.","type":"array","items":{"type":"string"}},"code":{"type":"string","description":"Represents the server-side error code."}}},{"type":"object","properties":{"detail":{"description":"Provides a detailed message for the given error.","type":"string"},"code":{"type":"string","description":"Represents the server-side error code."}}}]}}}},"401":{"description":"Unauthorized Access","content":{"application/json":{"schema":{"type":"object","properties":{"detail":{"type":"string","description":"Contains a detailed description of the error."},"code":{"type":"string","description":"Represents the server-side error code."}}}}}},"404":{"description":"The given resource or object was not found or does not exist.","content":{"application/json":{"schema":{"type":"object","properties":{"detail":{"description":"Contains a detailed description of the error.","type":"string"}}}}}}}},"paths":{"/api/v1/application_permissions/{id}/":{"patch":{"tags":["ApplicationPermissions"],"summary":"Partially Update Application Permission","description":"Partially updates an existing Application Permission object.","parameters":[{"$ref":"#/components/parameters/id_path"}],"requestBody":{"required":false,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApplicationPermissionUpdate"}}}},"responses":{"200":{"description":"Application Permission Partially Updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApplicationPermission"}}}},"400":{"$ref":"#/components/responses/400"},"401":{"$ref":"#/components/responses/401"},"404":{"$ref":"#/components/responses/404"}}}}}}
```

## Retrieve detailed application permission

> Get detailed information of a specific application permission

```json
{"openapi":"3.0.3","info":{"title":"Omnitron API","version":"1.0.0"},"security":[{"Token":[]}],"components":{"securitySchemes":{"Token":{"type":"apiKey","in":"header","name":"Authorization"}},"parameters":{"id_path":{"name":"id","in":"path","description":"Unique identifier of the resource","required":true,"schema":{"type":"integer"}}},"schemas":{"ApplicationPermissionDetailed":{"type":"object","allOf":[{"$ref":"#/components/schemas/StarterModel"}],"properties":{"pk":{"type":"integer","description":"Primary key for the application permission."},"name":{"type":"string","description":"The name of the application permission."},"path":{"type":"string","description":"The path of the application permission."},"label":{"type":"string","description":"The label of the application permission."},"parent":{"$ref":"#/components/schemas/ApplicationPermission"},"application":{"type":"integer","description":"Unique identifier for the related application."}}},"StarterModel":{"type":"object","properties":{"created_date":{"type":"string","format":"date-time","readOnly":true,"description":"The date and time when the object was created."},"modified_date":{"type":"string","format":"date-time","description":"The date and time when the object was last modified."}}},"ApplicationPermission":{"type":"object","allOf":[{"$ref":"#/components/schemas/StarterModel"}],"properties":{"pk":{"type":"integer","description":"Primary key for the application permission."},"name":{"type":"string","description":"The name of the application permission."},"path":{"type":"string","description":"The path of the application permission."},"label":{"type":"string","description":"The label of the application permission."},"parent":{"type":"integer","description":"Unique identifier for the parent application permission."},"application":{"type":"integer","description":"Unique identifier for the related application."}}}},"responses":{"403":{"description":"Forbidden"},"404":{"description":"The given resource or object was not found or does not exist.","content":{"application/json":{"schema":{"type":"object","properties":{"detail":{"description":"Contains a detailed description of the error.","type":"string"}}}}}}}},"paths":{"/api/v1/application_permissions/{id}/detailed/":{"get":{"tags":["ApplicationPermissions"],"summary":"Retrieve detailed application permission","description":"Get detailed information of a specific application permission","parameters":[{"$ref":"#/components/parameters/id_path"}],"responses":{"200":{"description":"Detailed application permission details","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApplicationPermissionDetailed"}}}},"403":{"$ref":"#/components/responses/403"},"404":{"$ref":"#/components/responses/404"}}}}}}
```

## List application permissions

> Get a list of all application permissions

```json
{"openapi":"3.0.3","info":{"title":"Omnitron API","version":"1.0.0"},"security":[{"Token":[]}],"components":{"securitySchemes":{"Token":{"type":"apiKey","in":"header","name":"Authorization"}},"parameters":{"page":{"name":"page","in":"query","required":false,"description":"Specifies the page number of the current dataset","schema":{"type":"integer","minimum":1,"default":1}},"limit":{"name":"limit","in":"query","required":false,"description":"Indicates the number of rows on the current page.","schema":{"type":"integer","minimum":1,"default":10}},"name":{"name":"name","in":"query","description":"Filter by name.","schema":{"type":"string"}},"application":{"name":"application","in":"query","description":"Filter by application ID.","required":false,"schema":{"type":"integer"}},"path":{"name":"path","in":"query","description":"Filter by path","schema":{"type":"string"}},"parent":{"name":"parent","in":"query","description":"Filter by parent product ID.","schema":{"type":"integer"}},"label":{"name":"label","in":"query","description":"The display label of the attribute value","required":false,"schema":{"type":"string"}}},"schemas":{"ApplicationPermission":{"type":"object","allOf":[{"$ref":"#/components/schemas/StarterModel"}],"properties":{"pk":{"type":"integer","description":"Primary key for the application permission."},"name":{"type":"string","description":"The name of the application permission."},"path":{"type":"string","description":"The path of the application permission."},"label":{"type":"string","description":"The label of the application permission."},"parent":{"type":"integer","description":"Unique identifier for the parent application permission."},"application":{"type":"integer","description":"Unique identifier for the related application."}}},"StarterModel":{"type":"object","properties":{"created_date":{"type":"string","format":"date-time","readOnly":true,"description":"The date and time when the object was created."},"modified_date":{"type":"string","format":"date-time","description":"The date and time when the object was last modified."}}}},"responses":{"403":{"description":"Forbidden"}}},"paths":{"/api/v1/application_permissions/":{"get":{"tags":["ApplicationPermissions"],"summary":"List application permissions","description":"Get a list of all application permissions","parameters":[{"$ref":"#/components/parameters/page"},{"$ref":"#/components/parameters/limit"},{"$ref":"#/components/parameters/name"},{"$ref":"#/components/parameters/application"},{"$ref":"#/components/parameters/path"},{"$ref":"#/components/parameters/parent"},{"$ref":"#/components/parameters/label"}],"responses":{"200":{"description":"List of application permissions","content":{"application/json":{"schema":{"properties":{"count":{"type":"integer"},"next":{"type":"string","description":"Next page URL","nullable":true},"previous":{"type":"string","description":"Previous page URL","nullable":true},"results":{"type":"array","items":{"$ref":"#/components/schemas/ApplicationPermission"}}}}}}},"403":{"$ref":"#/components/responses/403"}}}}}}
```

## Create Application Permission

> Creates a new Application Permission object.

```json
{"openapi":"3.0.3","info":{"title":"Omnitron API","version":"1.0.0"},"security":[{"Token":[]}],"components":{"securitySchemes":{"Token":{"type":"apiKey","in":"header","name":"Authorization"}},"schemas":{"ApplicationPermissionCreate":{"type":"object","properties":{"name":{"type":"string","description":"The name of the application permission."},"path":{"type":"string","description":"The path of the application permission."},"label":{"type":"string","description":"The label of the application permission."},"parent":{"type":"integer","description":"Unique identifier for the parent application permission."},"application":{"type":"integer","description":"Unique identifier for the related application."}}},"ApplicationPermission":{"type":"object","allOf":[{"$ref":"#/components/schemas/StarterModel"}],"properties":{"pk":{"type":"integer","description":"Primary key for the application permission."},"name":{"type":"string","description":"The name of the application permission."},"path":{"type":"string","description":"The path of the application permission."},"label":{"type":"string","description":"The label of the application permission."},"parent":{"type":"integer","description":"Unique identifier for the parent application permission."},"application":{"type":"integer","description":"Unique identifier for the related application."}}},"StarterModel":{"type":"object","properties":{"created_date":{"type":"string","format":"date-time","readOnly":true,"description":"The date and time when the object was created."},"modified_date":{"type":"string","format":"date-time","description":"The date and time when the object was last modified."}}}},"responses":{"400":{"description":"Required field(s) are missing, data is invalid, or the action is not allowed.","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"field":{"oneOf":[{"type":"array","description":"Indicates that no value was provided for the {field} field in the request.","items":{"type":"string"}},{"type":"array","description":"Indicates usage of a non-existent object for {field} in the request.","items":{"type":"string"}}]},"code":{"type":"string","description":"Represents the server-side error code."}}},{"type":"object","properties":{"non_field_errors":{"description":"Indicates invalid data or action usage in the request.","type":"array","items":{"type":"string"}},"code":{"type":"string","description":"Represents the server-side error code."}}},{"type":"object","properties":{"detail":{"description":"Provides a detailed message for the given error.","type":"string"},"code":{"type":"string","description":"Represents the server-side error code."}}}]}}}},"401":{"description":"Unauthorized Access","content":{"application/json":{"schema":{"type":"object","properties":{"detail":{"type":"string","description":"Contains a detailed description of the error."},"code":{"type":"string","description":"Represents the server-side error code."}}}}}},"404":{"description":"The given resource or object was not found or does not exist.","content":{"application/json":{"schema":{"type":"object","properties":{"detail":{"description":"Contains a detailed description of the error.","type":"string"}}}}}},"500":{"description":"Server Error"}}},"paths":{"/api/v1/application_permissions/":{"post":{"tags":["ApplicationPermissions"],"summary":"Create Application Permission","description":"Creates a new Application Permission object.","requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApplicationPermissionCreate"}}}},"responses":{"201":{"description":"Application Permission Created","content":{"application/json":{"schema":{"type":"object","$ref":"#/components/schemas/ApplicationPermission"}}}},"400":{"$ref":"#/components/responses/400"},"401":{"$ref":"#/components/responses/401"},"404":{"$ref":"#/components/responses/404"},"500":{"$ref":"#/components/responses/500"}}}}}}
```

## List application permissions with details

> Get a list of all application permissions with details

```json
{"openapi":"3.0.3","info":{"title":"Omnitron API","version":"1.0.0"},"security":[{"Token":[]}],"components":{"securitySchemes":{"Token":{"type":"apiKey","in":"header","name":"Authorization"}},"parameters":{"page":{"name":"page","in":"query","required":false,"description":"Specifies the page number of the current dataset","schema":{"type":"integer","minimum":1,"default":1}},"limit":{"name":"limit","in":"query","required":false,"description":"Indicates the number of rows on the current page.","schema":{"type":"integer","minimum":1,"default":10}},"name":{"name":"name","in":"query","description":"Filter by name.","schema":{"type":"string"}},"application":{"name":"application","in":"query","description":"Filter by application ID.","required":false,"schema":{"type":"integer"}},"path":{"name":"path","in":"query","description":"Filter by path","schema":{"type":"string"}},"parent":{"name":"parent","in":"query","description":"Filter by parent product ID.","schema":{"type":"integer"}},"label":{"name":"label","in":"query","description":"The display label of the attribute value","required":false,"schema":{"type":"string"}}},"schemas":{"ApplicationPermission":{"type":"object","allOf":[{"$ref":"#/components/schemas/StarterModel"}],"properties":{"pk":{"type":"integer","description":"Primary key for the application permission."},"name":{"type":"string","description":"The name of the application permission."},"path":{"type":"string","description":"The path of the application permission."},"label":{"type":"string","description":"The label of the application permission."},"parent":{"type":"integer","description":"Unique identifier for the parent application permission."},"application":{"type":"integer","description":"Unique identifier for the related application."}}},"StarterModel":{"type":"object","properties":{"created_date":{"type":"string","format":"date-time","readOnly":true,"description":"The date and time when the object was created."},"modified_date":{"type":"string","format":"date-time","description":"The date and time when the object was last modified."}}}}},"paths":{"/api/v1/application_permissions/detailed":{"get":{"tags":["ApplicationPermissions"],"summary":"List application permissions with details","description":"Get a list of all application permissions with details","parameters":[{"$ref":"#/components/parameters/page"},{"$ref":"#/components/parameters/limit"},{"$ref":"#/components/parameters/name"},{"$ref":"#/components/parameters/application"},{"$ref":"#/components/parameters/path"},{"$ref":"#/components/parameters/parent"},{"$ref":"#/components/parameters/label"}],"responses":{"200":{"description":"List of application permissions with details","content":{"application/json":{"schema":{"properties":{"count":{"type":"integer"},"next":{"type":"string","description":"Next page URL","nullable":true},"previous":{"type":"string","description":"Previous page URL","nullable":true},"results":{"type":"array","items":{"$ref":"#/components/schemas/ApplicationPermission"}}}}}}}}}}}}
```

## List application permission children

> Get a list of all application permission children

```json
{"openapi":"3.0.3","info":{"title":"Omnitron API","version":"1.0.0"},"security":[{"Token":[]}],"components":{"securitySchemes":{"Token":{"type":"apiKey","in":"header","name":"Authorization"}},"parameters":{"page":{"name":"page","in":"query","required":false,"description":"Specifies the page number of the current dataset","schema":{"type":"integer","minimum":1,"default":1}},"limit":{"name":"limit","in":"query","required":false,"description":"Indicates the number of rows on the current page.","schema":{"type":"integer","minimum":1,"default":10}},"application":{"name":"application","in":"query","description":"Filter by application ID.","required":false,"schema":{"type":"integer"}},"path":{"name":"path","in":"query","description":"Filter by path","schema":{"type":"string"}},"parent":{"name":"parent","in":"query","description":"Filter by parent product ID.","schema":{"type":"integer"}},"label":{"name":"label","in":"query","description":"The display label of the attribute value","required":false,"schema":{"type":"string"}},"name":{"name":"name","in":"query","description":"Filter by name.","schema":{"type":"string"}}},"schemas":{"ApplicationPermissionChild":{"type":"object","allOf":[{"$ref":"#/components/schemas/ApplicationPermission"}],"properties":{"children":{"type":"array","items":{"$ref":"#/components/schemas/ApplicationPermission"},"description":"List of child application permissions."}}},"ApplicationPermission":{"type":"object","allOf":[{"$ref":"#/components/schemas/StarterModel"}],"properties":{"pk":{"type":"integer","description":"Primary key for the application permission."},"name":{"type":"string","description":"The name of the application permission."},"path":{"type":"string","description":"The path of the application permission."},"label":{"type":"string","description":"The label of the application permission."},"parent":{"type":"integer","description":"Unique identifier for the parent application permission."},"application":{"type":"integer","description":"Unique identifier for the related application."}}},"StarterModel":{"type":"object","properties":{"created_date":{"type":"string","format":"date-time","readOnly":true,"description":"The date and time when the object was created."},"modified_date":{"type":"string","format":"date-time","description":"The date and time when the object was last modified."}}}},"responses":{"403":{"description":"Forbidden"}}},"paths":{"/api/v1/application_permissions/children/":{"get":{"tags":["ApplicationPermissions"],"summary":"List application permission children","description":"Get a list of all application permission children","parameters":[{"$ref":"#/components/parameters/page"},{"$ref":"#/components/parameters/limit"},{"$ref":"#/components/parameters/application"},{"$ref":"#/components/parameters/path"},{"$ref":"#/components/parameters/parent"},{"$ref":"#/components/parameters/label"},{"$ref":"#/components/parameters/name"}],"responses":{"200":{"description":"List of application permission children","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/ApplicationPermissionChild"}}}}},"403":{"$ref":"#/components/responses/403"}}}}}}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://apidocs.akinon.com/omnitron-openapis/applicationpermissions.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
