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 Document Status

PreviousGet document detailNextGet signers of the document

Last updated 7 months ago

GET /v1/econtract/web_app/document/status/:document_id

Fetches document status for the given document ID

Status Document

get
Path parameters
document_idintegerRequiredExample: 16336
Header parameters
x-access-tokenstringOptionalExample: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjM5MzI5MDQwLWYwYTEtMTFlZS1iNWQ2LTM3NjhkOWZjNDIxMyIsImJ1c2luZXNzX2lkIjoiNmU1ZDY3OTAtZjg1MC0xMWVjLTkyNmUtZDkyMDdjNjAyMjM3Iiwicm9sZXMiOlsiUk9MRV9VU0VSIl0sImlhdCI6MTcyNzc2MjgyMiwiZXhwIjoxNzI4MTk0ODIyfQ.auZo6L686iHkPEzR493wnTL5m-TSZJe9W3AhUFjqbNc
Responses
200
OK
application/json
get
GET /econtract/web_app/document/status/{document_id} HTTP/1.1
Host: {{base_url}}v1
Accept: */*
200

OK

{
  "code": 200,
  "success": true,
  "data": {
    "document_id": "16500",
    "document_title": "sample_upload",
    "status": "processing",
    "serial_number": [
      "text"
    ],
    "isRestamping": false
  }
}