GET
/
v1
/
recipients
/
{recipient_id}
// GET https://api.signatureapi.com/v1/recipients/{recipient_id}
// X-API-Key: key_test_...
{
  "id": "re_26w2VVV5JVm4j459TY5BNM",
  "envelope_id": "52872f0e-b919-4d69-89cd-e7e56af00548",
  "type": "signer",
  "key": "provider",
  "name": "Emily Johnson",
  "email": "emily@example.com",
  "status": "completed",
  "completed_at": "2025-12-31T15:00:00.000Z",
  "status_updated_at": "2025-12-31T15:00:00.000Z"
}

Path Parameters

recipient_id
string
required

The unique identifier of a recipient.

Returns

Returns a 200 OK status code along with a recipient object if successful, or an error otherwise.

// GET https://api.signatureapi.com/v1/recipients/{recipient_id}
// X-API-Key: key_test_...
{
  "id": "re_26w2VVV5JVm4j459TY5BNM",
  "envelope_id": "52872f0e-b919-4d69-89cd-e7e56af00548",
  "type": "signer",
  "key": "provider",
  "name": "Emily Johnson",
  "email": "emily@example.com",
  "status": "completed",
  "completed_at": "2025-12-31T15:00:00.000Z",
  "status_updated_at": "2025-12-31T15:00:00.000Z"
}