Retrieve deleted signing sessions. This endpoint fetches all the deleted signing sessions for a given external ID.

GET /api/v1/signings/deleted

Sample request:

GET /signings/deleted Headers: externalId: your-external-id-guid

Headers

  • externalId string(uuid)

    The external identifier used to fetch the deleted signings.

Responses

  • 200

    Success

  • Not Found

    Hide response attributes Show response attributes object
    • code integer(int32)
    • message string | null
    • details array[string] | null
    Hide response attributes Show response attributes object
    • code integer(int32)
    • message string | null
    • details array[string] | null
    Hide response attributes Show response attributes object
    • code integer(int32)
    • message string | null
    • details array[string] | null
  • Error

    Hide response attributes Show response attributes object
    • type string | null
    • title string | null
    • status integer(int32) | null
    • detail string | null
    • instance string | null
    Hide response attributes Show response attributes object
    • type string | null
    • title string | null
    • status integer(int32) | null
    • detail string | null
    • instance string | null
    Hide response attributes Show response attributes object
    • type string | null
    • title string | null
    • status integer(int32) | null
    • detail string | null
    • instance string | null
GET /api/v1/signings/deleted
curl \
 --request GET 'https://api.lwolf.com/authentisign/api/v1/signings/deleted' \
 --header "externalId: string"
Response examples (404)
{
  "code": 42,
  "message": "string",
  "details": [
    "string"
  ]
}
Response examples (404)
{
  "code": 42,
  "message": "string",
  "details": [
    "string"
  ]
}
Response examples (default)
{
  "type": "string",
  "title": "string",
  "status": 42,
  "detail": "string",
  "instance": "string"
}
Response examples (default)
{
  "type": "string",
  "title": "string",
  "status": 42,
  "detail": "string",
  "instance": "string"
}