Store authentication credentials (API key, OAuth tokens, Basic auth) for an integration
Documentation Index
Fetch the complete documentation index at: https://docs.sigmamind.ai/llms.txt
Use this file to discover all available pages before exploring further.
API Key is required in header. You can find it in the settings
Unique identifier for the integration
Request body to register authentication credentials for a third-party integration. Only populate the fields relevant to the chosen authType — all other credential fields will be ignored.
The authentication strategy this credential set uses. Determines which credential fields are required: API_KEY — provide the apiKey object (key name, secret value, and position). BEARER_TOKEN — provide the token field. BASIC_AUTH — provide username and password fields. NO_AUTH — no credential fields required.
NO_AUTH, BASIC_AUTH, BEARER_TOKEN, API_KEY "API_KEY"
The bearer token or JWT access token value. Required when authType is BEARER_TOKEN. Sent as 'Authorization: Bearer ' on every outbound request.
"eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9..."
The username for Basic authentication. Required when authType is BASIC_AUTH. Combined with password and Base64-encoded into the Authorization header.
256"api_user@example.com"
The password for Basic authentication. Required when authType is BASIC_AUTH. Combined with username and Base64-encoded into the Authorization header.
512"s3cretP@ssword"
Describes how an API key is attached to outbound requests. Provide the header or query-param name, the secret value, and the injection position.
{
"key": "X-API-KEY",
"value": "<secret>",
"position": "header"
}Optional list of static HTTP headers attached to every outbound request under this auth. Applied on top of any headers defined at the integration or tool level. Useful for fixed metadata headers required by the third-party API.
[
{
"key": "X-Request-Source",
"value": "sigmamind"
}
]OK
Unique identifier for the auth record
"auth-P3kNz7Yv1Qm9"
Unique identifier of the parent integration
"intg-AuUKK371Spr5"
Authentication strategy
NO_AUTH, BASIC_AUTH, BEARER_TOKEN, API_KEY "api_key"
Headers to be sent with the request
Timestamp when the record was created
Timestamp when the record was last updated