Authentication REST Endpoints
Authentication
REST API endpoints for Authentication
- Create an Access Token
- Method: postPath:
/api/v2/tokens/ - Create an Access Token for an Application
- Method: postPath:
/api/v2/applications/{id}/tokens/ - Create an Application
- Method: postPath:
/api/v2/applications/ - Delete an Access Token
- Method: deletePath:
/api/v2/tokens/{id}/ - Delete an Application
- Method: deletePath:
/api/v2/applications/{id}/ - List Access Tokens
- Method: getPath:
/api/v2/tokens/ - List Access Tokens for an Application
- Method: getPath:
/api/v2/applications/{id}/tokens/ - List Activity Streams for an Access Token
- Method: getPath:
/api/v2/tokens/{id}/activity_stream/ - List Activity Streams for an Application
- Method: getPath:
/api/v2/applications/{id}/activity_stream/ - List Applications
- Method: getPath:
/api/v2/applications/ - Retrieve an Access Token
- Method: getPath:
/api/v2/tokens/{id}/ - Retrieve an Application
- Method: getPath:
/api/v2/applications/{id}/ - Token Handling Using OAuth2
- Method: getPath:
/api/o/ - Update an Access Token
- Method: patchPath:
/api/v2/tokens/{id}/ - Update an Access Token
- Method: putPath:
/api/v2/tokens/{id}/ - Update an Application
- Method: patchPath:
/api/v2/applications/{id}/ - Update an Application
- Method: putPath:
/api/v2/applications/{id}/