---
title: "Fetch lightweight outreach status by ID"
method: GET
path: "/credentialing-outreaches/{id}"
tags: ["Credentialing Outreach Resource"]
---

# Fetch lightweight outreach status by ID

`GET /credentialing-outreaches/{id}`

Returns a summary view of a single outreach record, suitable for lightweight status checks. Use this when you need basic outreach status and do not require the full email thread, replies, attachments, or timeline; for the full detail view, use GET /credentialing-outreaches/{id}/details instead. The id is the outreach record ID returned in the 201 body of POST /credentialing-outreaches, or from GET /credentialing-outreaches/workflow/{workflowId}.

## Path parameters

- `id` string, required

## Headers

- `tenant-id` string, required

## Response `200`

The outreach summary record identified by id. The `data` field is an opaque JSON node - its schema only exposes Jackson's own node-type introspection (empty/valueNode/containerNode), not the actual outreach fields it carries.

- PractitionerOutreachResponse
  - `id` string
  - `workflowId` string
  - `workflowIds` string[]
  - `data` JsonNode
    - `empty` boolean
    - `valueNode` boolean
    - `containerNode` boolean
    - `missingNode` boolean
    - `array` boolean
    - `object` boolean
    - `nodeType` 'ARRAY' | 'BINARY' | 'BOOLEAN' | 'MISSING' | 'NULL' | 'NUMBER' | 'OBJECT' | 'POJO' | 'STRING'
    - `pojo` boolean
    - `number` boolean
    - `integralNumber` boolean
    - `floatingPointNumber` boolean
    - `short` boolean
    - `int` boolean
    - `long` boolean
    - `float` boolean
    - `double` boolean
    - `bigDecimal` boolean
    - `bigInteger` boolean
    - `textual` boolean
    - `boolean` boolean
    - `null` boolean
    - `binary` boolean
  - `createdBy` string
  - `createdAt` string, date
  - `updatedAt` string, date

## Other responses

- `401` — Unauthorized - Authentication required
- `403` — Forbidden - User does not have required permissions
- `404` — The outreach ID does not exist, or it belongs to a different tenant than the one supplied in the tenant-id header. Verify the outreachId via GET /credentialing-outreaches/workflow/{workflowId} before retrying. The body is a plain string, not the ApiError shape.
- `500` — Internal Server Error - An unexpected error occurred

---

[API](https://skmtc.net/certifyos/apis/certify-api-layer.md) · [All operations](https://skmtc.net/certifyos/apis/certify-api-layer/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/certifyos/certify-api-layer/revisions/563848e0ecc0/schema)
