Admiral
Credentials

Create a credential

POST
/api/v1/credentials

The credential type and auth config must match. For example, a GIT_TOKEN credential requires a matching auth_config (e.g. BEARER_TOKEN → bearer_token).

Scope: credential:write

Authorization

bearerAuth
AuthorizationBearer <token>

Personal Access Token (PAT) or Service Access Token (SAT). Pass the token in the Authorization header: Bearer admp_...

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://api.admiral.io/api/v1/credentials" \  -H "Content-Type: application/json" \  -d '{    "name": "string",    "type": "CREDENTIAL_TYPE_UNSPECIFIED",    "auth_config": {      "basic_auth": {}    }  }'
{  "credential": {    "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",    "name": "string",    "description": "string",    "type": "CREDENTIAL_TYPE_UNSPECIFIED",    "auth_config": {      "basic_auth": {        "username": "string",        "password": "string"      }    },    "labels": {      "property1": "string",      "property2": "string"    },    "created_by": {      "id": "string",      "display_name": "string",      "email": "string"    },    "created_at": "2023-01-15T01:30:15.01Z",    "updated_at": "2023-01-15T01:30:15.01Z"  }}