Authentication REST Endpoints

Authentication

REST API endpoints for Authentication

Create an Access Token
Method: post
Path: /api/v2/tokens/
Create an Access Token for an Application
Method: post
Path: /api/v2/applications/{id}/tokens/
Create an Application
Method: post
Path: /api/v2/applications/
Delete an Access Token
Method: delete
Path: /api/v2/tokens/{id}/
Delete an Application
Method: delete
Path: /api/v2/applications/{id}/
List Access Tokens
Method: get
Path: /api/v2/tokens/
List Access Tokens for an Application
Method: get
Path: /api/v2/applications/{id}/tokens/
List Activity Streams for an Access Token
Method: get
Path: /api/v2/tokens/{id}/activity_stream/
List Activity Streams for an Application
Method: get
Path: /api/v2/applications/{id}/activity_stream/
List Applications
Method: get
Path: /api/v2/applications/
Retrieve an Access Token
Method: get
Path: /api/v2/tokens/{id}/
Retrieve an Application
Method: get
Path: /api/v2/applications/{id}/
Token Handling Using OAuth2
Method: get
Path: /api/o/
Update an Access Token
Method: patch
Path: /api/v2/tokens/{id}/
Update an Access Token
Method: put
Path: /api/v2/tokens/{id}/
Update an Application
Method: patch
Path: /api/v2/applications/{id}/
Update an Application
Method: put
Path: /api/v2/applications/{id}/