API clients

The following endpoint is the base url for the APIs below.

https://service.alphaus.cloud/m/u/users/

Create API client

Create a new API client under a specific user.

Request

POST /client/:user HTTP1.1
Authorization: Bearer {token}
Content-Type: application/json

{
  "name": "test-apiclient-name",
}

:user is either root user or subuser.

Details for the POST {body}.

Key

Value

name

Required. The name of the API client.

Response

List API clients

List all API clients under a specific user.

Request

:user is either root user or subuser.

Response

Delete API client

Delete an existing API client under a specific user.

Request

:user is either root user or subuser. :clientid is the client id to delete.

Response

Last updated

Was this helpful?