Access Tokens
Overview
An Access Token is a long-lived credential that allows a client application to use the Amper API without the need for a password-based login. This form of authentication is ideal for automated programmatic access.
Methods and URLs
Method | URL | User Roles | Description |
---|---|---|---|
POST | /v1/users/{id}/access_tokens | ADMIN |
Creates an access token for the specified user |
POST | /v1/access_tokens | MEMBER |
Creates an access token |
GET | /v1/access_tokens/{id} | MEMBER |
Retrieves information for an individual access token |
GET | /v1/access_tokens | MEMBER |
Retrieves information for multiple access tokens |
DELETE | /v1/access_tokens/{id} | MEMBER |
Deletes an access token |