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.

FieldTypeRequiredDescriptionConstraints
namestringYesName[ 1 .. 60 ] characters
descriptionstringNoDescription[ 1 .. 512 ] characters

Request Example

{
  "name": "string",
  "description": "string"
}

Responses

  • 200: Successful Response
null
  • 422: Validation Error
{
  "detail": [
    {
      "loc": [
        "string"
        ],
        "msg": "string",
        "type": "string"
    }
  ]
}

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.

FieldTypeRequiredDescriptionConstraints
client_idstringYesapplication client id
client_secretstringYesapplication client secret

Request Example

{
  "client_id": "string",
  "client_secret": "string"
}

Responses

  • 200: Successful Response
null
  • 422: Validation Error
{
  "detail": [
    {
      "loc": [
        "string"
        ],
        "msg": "string",
        "type": "string"
    }
  ]
}

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
null

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.

FieldTypeRequiredDescriptionConstraints
idstringNoid as string convert from int
namestringNoName[ 1 .. 60 ] characters

Request Example

{
  "id": 0,
  "name": "string"
}

Responses

  • 200: Successful Response
null
  • 422: Validation Error
{
  "detail": [
    {
      "loc": [
        "string"
        ],
        "msg": "string",
        "type": "string"
    }
  ]
}

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.

FieldTypeRequiredDescriptionConstraints
idstringNoid as string convert from int
namestringNoName[ 1 .. 60 ] characters

Request Example

{
  "id": 0,
  "name": "string"
}

Responses

  • 200: Successful Response
null
  • 422: Validation Error
{
  "detail": [
    {
      "loc": [
        "string"
        ],
        "msg": "string",
        "type": "string"
    }
  ]
}