Application

Root resource for all application APIs

Get Application

Get the application with the specific application-id

Securityapi_key
Request
path Parameters
id
required
string

Application ID

Example: b6ee555d61df4c0ae30099d3ba4acf5c-sample-01
Responses
200

200 response

400

400 response

403

The request is forbidden (Please input a valid API key)

get/hub/apps/{id}
Request samples
Response samples
application/json
{
  • "status": {
    },
  • "result": {
    }
}

Delete Application

Delete the application with the specific application-id

Securityapi_key
Request
path Parameters
id
required
string

Application ID

Example: b6ee555d61df4c0ae30099d3ba4acf5c-sample-01
Responses
200

200 response

400

400 response

403

The request is forbidden (Please input a valid API key)

delete/hub/apps/{id}
Request samples
Response samples
application/json
{
  • "status": {
    },
  • "result": {
    }
}

List All Applications

List all applications regards to the user's API key

Securityapi_key
Responses
200

200 response

403

The request is forbidden (Please input a valid API key)

get/hub/apps
Request samples
Response samples
application/json
{
  • "status": {
    },
  • "result": {
    }
}

Create New Application

Create a new application with the user's API key

Securityapi_key
Request
Request Body schema: application/json
required
name
required
string [ 1 .. 255 ] characters

Application Name.

Responses
200

200 response

400

Invalid request body

403

The request is forbidden (Please input a valid API key)

post/hub/apps
Request samples
application/json
{
  • "name": "Test Application for Semantex API"
}
Response samples
application/json
{
  • "status": {
    },
  • "result": {
    }
}