OAuth Tokens
The oauth-token
object represents a VCS configuration which includes the OAuth connection and the associated OAuth token. This object is used when creating a workspace to identify which VCS connection to use.
List OAuth Tokens
List all the OAuth Tokens for a given OAuth Client
GET /oauth-clients/:oauth_client_id/oauth-tokens
Parameter | Description |
---|---|
:oauth_client_id | The ID of the OAuth Client |
Status | Response | Reason |
---|---|---|
200 | JSON API document (type: "oauth-tokens" ) | Success |
404 | JSON API error object | OAuth Client not found, or user unauthorized to perform action |
Query Parameters
This endpoint supports pagination with standard URL query parameters. Remember to percent-encode [
as %5B
and ]
as %5D
if your tooling doesn't automatically encode URLs. If neither pagination query parameters are provided, the endpoint will not be paginated and will return all results.
Parameter | Description |
---|---|
page[number] | Optional. If omitted, the endpoint will return the first page. |
page[size] | Optional. If omitted, the endpoint will return 20 oauth tokens per page. |
Sample Request
Sample Response
Show an OAuth Token
GET /oauth-tokens/:id
Parameter | Description |
---|---|
:id | The ID of the OAuth token to show |
Status | Response | Reason |
---|---|---|
200 | JSON API document (type: "oauth-tokens" ) | Success |
404 | JSON API error object | OAuth Token not found, or user unauthorized to perform action |
Sample Request
Sample Response
Update an OAuth Token
PATCH /oauth-tokens/:id
Parameter | Description |
---|---|
:id | The ID of the OAuth token to update |
Status | Response | Reason |
---|---|---|
200 | JSON API document (type: "oauth-tokens" ) | OAuth Token successfully updated |
404 | JSON API error object | OAuth Token not found or user unauthorized to perform action |
422 | JSON API error object | Malformed request body (missing attributes, wrong types, etc.) |
Request Body
This PATCH endpoint requires a JSON object with the following properties as a request payload.
Properties without a default value are required.
Key path | Type | Default | Description |
---|---|---|---|
data.type | string | Must be "oauth-tokens" . | |
data.attributes.ssh-key | string | Optional. The SSH key |
Sample Payload
Sample Request
Sample Response
Destroy an OAuth Token
DELETE /oauth-tokens/:id
Parameter | Description |
---|---|
:id | The ID of the OAuth Token to destroy |
Status | Response | Reason |
---|---|---|
204 | Empty response | The OAuth Token was successfully destroyed |
404 | JSON API error object | OAuth Token not found, or user unauthorized to perform action |
Sample Request