Create a token
This endpoint creates a token, which you will receive in the response. Please note that it cannot be retrieved at a later time.
Request
POST https://api.nicereply.com/me/tokens
Request body
Field Name | Data Type | Is Nullable | Description |
---|---|---|---|
name | String | No |
Example body
{
"name": "Filip's dev token"
}
Example response
Field Name | Data Type | Is Nullable | Description |
---|---|---|---|
token | String | No | API token |
200 OK
{
"data": {
"token": "4e92a87cc4620967951b8112c79b4e85"
}
}