---
title: "Get Integration Auth"
method: GET
path: "/v1/integrations/{integrationId}/auth/{authId}"
tags: ["Integration Auth"]
---

# Get Integration Auth

`GET /v1/integrations/{integrationId}/auth/{authId}`

Retrieves the full details of a single auth record by authId. Returns the auth type, credential metadata, and associated integration. Sensitive credential values are not returned after creation.

## Path parameters

- `integrationId` string, required
- `authId` string, required

## Response `200`

OK

- IntegrationAuthResponse
  - `authId` string — Unique identifier for the auth record
  - `integrationId` string — Unique identifier of the parent integration
  - `authType` 'NO_AUTH' | 'BASIC_AUTH' | 'BEARER_TOKEN' | 'API_KEY' — 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.
  - `headers` object — 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.
  - `createdAt` string, date-time — Timestamp when the record was created
  - `updatedAt` string, date-time — Timestamp when the record was last updated

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not Found
- `500` — Internal Server Error

---

[API](https://skmtc.net/sigmamind/apis/sigmamind-apis.md) · [All operations](https://skmtc.net/sigmamind/apis/sigmamind-apis/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/sigmamind/sigmamind-apis/versions/d00f52b5123f/schema)
