Retrieve all signings owned by a user. This endpoint fetches a list of all the signings that the user owns.

GET /api/v1/signings

Sample request:

GET /api/v1/signings?SortBy=LastModified&SortDescending=true&FilterBy=exampleFilter&SkipItems=0&ItemLimit=50&TransactionId=example-transaction-id&StatusId=1,21

Query parameters

  • TransactionId string(uuid)
  • StatusId array[integer(int32)]
  • SortBy string
  • SortDescending boolean
  • FilterBy string
  • SkipItems integer(int32)
  • ItemLimit integer(int32)

Responses

  • 200

    Success

  • Error

    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
GET /api/v1/signings
curl \
 --request GET 'https://api.lwolf.com/authentisign/api/v1/signings'
Response examples (default)
{
  "code": 42,
  "message": "string",
  "details": [
    "string"
  ]
}
Response examples (default)
{
  "code": 42,
  "message": "string",
  "details": [
    "string"
  ]
}