POST/org/credential_providers

Configure an external credential provider (e.g., 1Password) for automatic credential lookup.

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Request to create an external credential provider

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/org/credential_providers" \  -H "Content-Type: application/json" \  -d '{    "provider_type": "onepassword",    "name": "string",    "token": "string"  }'
{  "id": "string",  "provider_type": "onepassword",  "name": "string",  "enabled": true,  "priority": 0,  "created_at": "2019-08-24T14:15:22Z",  "updated_at": "2019-08-24T14:15:22Z"}