Skip to main content

Get Document list from status

GET 

/documentlist/:doctype

Document Types:

Retrieve a list of documents based on type

  1. Draft Documents:

    • Documents that are currently in draft status.
  2. In-Progress Documents:

    • Documents that are currently in progress.
  3. Completed Documents:

    • Documents that have been successfully completed with all required signatures.
  4. Expired Documents:

    • Documents that have expired and are no longer accessible.
  5. Declined Documents:

    • Documents that have been declined by the user.

Request

Path Parameters

    doctype stringrequired

    Possible values: [draftdocuments, inprogressdocuments, completedocuments, expiredocuments, declinedocuments]

    The type of documents to retrieve

Query Parameters

    limit number

    Possible values: <= 500

    Example: 10
    skip number
    Example: 0

Responses

successful operation

Schema

    result

    document[]

  • Array [

  • objectId string
    file string
    title string
    note string

    folder

    object

    objectId string
    name string
    owner string

    signers

    object[]

  • Array [

  • name string
    email string
    phone string
  • ]

  • createdAt date
    updatedAt date
  • ]

Loading...