Generate a new API Token
POST/Accounts/:AccountSid/tokens
Generate an API Token for a project to be used to authenticate requests within the project.
Request
Path Parameters
The unique identifier for the project you want to use to authenticate this request.
- application/json
Body
required
The name representing the project API token.
John Doe's Token
The permissions you would like to enable for this project API token. Valid permissions are calling, chat, fax, management, messaging, numbers, pubsub, storage, tasking, and video
["calling","fax","messaging"]
The unique identifier of the subproject you would like to create a token for. The subproject passed must be a child of the project used to authenticate the request.
9a7fc048-984f-11ee-b9d1-0242ac120002
Responses
- 200
- 422
OK
- application/json
- Schema
- Example (from schema)
Schema
The ID of the created API Token.
ea14556a-984f-11ee-b9d1-0242ac120002
The name of the created API Token.
John Doe's Token
The permissions enabled for this token.
["calling","fax","messaging"]
The API token that can be used along with the project ID for basic authentication
PT037258e533e87ac63174ee136ed0798dc85d4f4f9e6d7191
{
"id": "ea14556a-984f-11ee-b9d1-0242ac120002",
"name": "John Doe's Token",
"permissions": [
"calling",
"fax",
"messaging"
],
"token": "PT037258e533e87ac63174ee136ed0798dc85d4f4f9e6d7191"
}
Unprocessable Entity. You may have specified invalid parameters.
- application/json
- Schema
- Example (from schema)
Schema
{
"code": 10003,
"message": "Permissions contains invalid selections (valid permissions are: calling, chat, fax, management, messaging, numbers, pubsub, storage, tasking, and video)",
"status": 400,
"more_info": "https://developer.signalwire.com/cxml/overview/error-codes"
}