Retrieve the Identity Config for one Identity and Template.
GET /api/v1/forward/identities/{identity_id}/templates/{template_id}/config
Returns the stored Forward Identity Config DSL. This is the override layer, not the compiled runtime config.
Headers
| Header | Required | Description |
|---|---|---|
Authorization | Yes | Bearer <PAT or SAT> |
Path parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
identity_id | string | Yes | Forward Identity ID. |
template_id | string | Yes | Forward Template ID. |
Example request
Example response
HTTP 200 OK
Response fields
| Field | Type | Description |
|---|---|---|
type | string | Always config. |
identity_config | object | Stored user-level override DSL. |
metadata | object | Custom metadata. |
Errors
| HTTP | Type | Code | Trigger |
|---|---|---|---|
| 401 | authentication_error | authentication_required | The PAT or SAT is invalid or expired. |
| 404 | not_found_error | - | The Identity, Template, or Config does not exist. |
Notes
- Use Get Effective Config to see the compiled runtime config.
enabled=falsein a resource map disables resources inherited from the Template.environment_variablesreturns the storedset/unsetoverride DSL. See Effective Config for compiled values.- GitHub repository overrides return stored fields such as
url,mount_path, andenabled, but do not return the write-onlyauthorization_token.