Application
POST /api/application/create
Create Application Information by admin user.
Authorization
🔒OAuth2: OAuth2PasswordBearer
Flow type: password
Token URL: token
Request Body
The request body must be in application/json
format.
Field | Type | Required | Description | Constraints |
---|---|---|---|---|
name | string | Yes | Name | [ 1 .. 60 ] characters |
description | string | No | Description | [ 1 .. 512 ] characters |
Request Example
Responses
- 200: Successful Response
- 422: Validation Error
POST /api/application/generate-token
Using the application client_id and client_secret to generate a temporary token.
Authorization
🔒OAuth2: OAuth2PasswordBearer
Flow type: password
Token URL: token
Request Body
The request body must be in application/json
format.
Field | Type | Required | Description | Constraints |
---|---|---|---|---|
client_id | string | Yes | application client id | |
client_secret | string | Yes | application client secret |
Request Example
Responses
- 200: Successful Response
- 422: Validation Error
GET /api/application/token-info
Get your app-token information by the temporary token.
Authorization
🔒OAuth2: OAuth2PasswordBearer
Flow type: password
Token URL: token
Responses
- 200: Successful Response
GET /api/application/info
Get a applications detail information.
Authorization
🔒OAuth2: OAuth2PasswordBearer
Flow type: password
Token URL: token
Request Body
The request body must be in application/json
format.
Field | Type | Required | Description | Constraints |
---|---|---|---|---|
id | string | No | id as string convert from int | |
name | string | No | Name | [ 1 .. 60 ] characters |
Request Example
Responses
- 200: Successful Response
- 422: Validation Error
DELETE /api/application/delete
Delete a applications record by id or name.
Authorization
🔒OAuth2: OAuth2PasswordBearer
Flow type: password
Token URL: token
Request Body
The request body must be in application/json
format.
Field | Type | Required | Description | Constraints |
---|---|---|---|---|
id | string | No | id as string convert from int | |
name | string | No | Name | [ 1 .. 60 ] characters |
Request Example
Responses
- 200: Successful Response
- 422: Validation Error