Get the application with the specific application-id
200 response
400 response
The request is forbidden (Please input a valid API key)
{- "status": {
- "success": true,
- "code": 200
}, - "result": {
- "applications": [
- {
- "name": "string",
- "client": {
- "api-key": "string"
}, - "create-date": "string",
- "id": "string",
- "count": 0
}
]
}
}
Delete the application with the specific application-id
200 response
400 response
The request is forbidden (Please input a valid API key)
{- "status": {
- "success": true,
- "code": 200
}, - "result": {
- "app-id": "string",
- "message": "string"
}
}
List all applications regards to the user's API key
200 response
The request is forbidden (Please input a valid API key)
{- "status": {
- "success": true,
- "code": 200
}, - "result": {
- "applications": [
- {
- "name": "string",
- "client": {
- "api-key": "string"
}, - "create-date": "string",
- "id": "string",
- "count": 0
}
]
}
}
Create a new application with the user's API key
200 response
Invalid request body
The request is forbidden (Please input a valid API key)
{- "name": "Test Application for Semantex API"
}
{- "status": {
- "success": true,
- "code": 200
}, - "result": {
- "app-id": "string"
}
}