Momofin
  • QUICKSTART
    • Getting Started
    • Uploading a document for e-Meterai stamping
  • Reference
    • API Reference
      • Auth
        • Generate access token
        • Get list of contacts
      • Documents
        • Upload document
        • Upload document with Base64 encoded data
        • Download document
        • Get list of sent documents
        • Get list of incoming documents
        • Get document detail
        • Get Document Status
        • Get signers of the document
        • Get original document
        • Placement Document
        • Process document
        • Delete document
        • Audit trail
        • Get speciment
        • Restamping meterai
        • Get client balance
Powered by GitBook
On this page
  1. Reference
  2. API Reference
  3. Documents

Get signers of the document

PreviousGet Document StatusNextGet original document

Last updated 7 months ago

GET /v1/econtract/web_app/document/signers-only/:document_id

Fetches signers information for the given document ID

Get Data Signer

get
Path parameters
document_idintegerRequiredExample: 10074
Header parameters
x-access-tokenstringOptionalExample: {{momofingo_token}}
Responses
200
OK
application/json
get
GET /econtract/web_app/document/signers-only/{document_id} HTTP/1.1
Host: {{base_url}}v1
Accept: */*
200

OK

{
  "code": 200,
  "data": {
    "document_id": 16502,
    "document_name": "Doc Sample-1728885978549-1gC7TJ4F5sLuvKPe5mZmad",
    "signers": [
      {
        "user_id": "ab69d220-b697-11ee-bada-41a5d350d473",
        "name": "bowo test",
        "email": "test@email.com",
        "color": "#d3ecfd",
        "speciment_url": "",
        "avatar": "https://avatars.dicebear.com/api/initials/bw dev.svg",
        "role": "signer",
        "number": 1,
        "is_guest": false,
        "signed_at": "2023-09-11T02:41:01.000Z",
        "is_kyc": false
      }
    ]
  }
}