application

Get all applications

Securityapi_key
Request
query Parameters
page_number
integer <int64>
Default: 1

The page number for which to get applications. This will default to the first page if excluded

page_size
integer <int64>

The maximum number of objects to return. This will default to the DefaultApiPageSize setting if not provided

Responses
200

Success

400

Bad request

get/applications
Response samples
application/json
{
  • "_pageInfo": {
    },
  • "responseList": [
    ]
}

Create application

Securityapi_key
Request
Request Body schema: application/json
required

The application to create

applicationName
required
string <= 100 characters

The name of this Application. Note that it must be unique.

Responses
201

Success

400

Bad request

409

Conflict

post/applications
Request samples
application/json
{
  • "applicationName": "App123"
}
Response samples
application/json
{
  • "applicationName": "App123"
}

Get application by ID

Securityapi_key
Request
path Parameters
applicationId
required
integer <int32>

The ID of the application to get

Responses
200

Success

401

Unauthorized access

404

Not found

get/applications/{applicationId}
Response samples
application/json
{
  • "applicationName": "App123"
}

Delete application by ID

Securityapi_key
Request
path Parameters
applicationId
required
integer <int32>

The ID of the application to delete

Responses
200

Success

400

Bad request

401

Unauthorized access

404

Not found

delete/applications/{applicationId}