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

Placement Document

PreviousGet original documentNextProcess document

Last updated 7 months ago

POST /v1/econtract/momofingo/sign/placement-docs

Submits the placement of signature documents.

Placement Document

post
Header parameters
OriginstringOptionalExample: sdadsada.dev.momofingo.com
x-access-tokenstringOptionalExample: {{momofingo_token}}
Body
document_idintegerOptionalExample: 16502
Responses
200
OK
application/json
post
POST /econtract/momofingo/sign/placement-docs HTTP/1.1
Host: {{base_url}}v1
Content-Type: application/json
Accept: */*
Content-Length: 305

{
  "signers": [
    {
      "page": 1,
      "props": {
        "x": 306,
        "y": 396,
        "w": 50,
        "h": 50
      },
      "user": {
        "speciment": "",
        "name": "bowo test",
        "email": null,
        "userid": "ab69d220-b697-11ee-bada-41a5d350d473"
      },
      "emet": {
        "urx": 356,
        "ury": 396,
        "llx": 306,
        "lly": 346
      },
      "sign": null,
      "type": "emet",
      "documentSize": {
        "height": 792,
        "width": 612
      }
    }
  ],
  "document_id": 12345
}
200

OK

{
  "code": 200,
  "success": true,
  "msg": "Berhasil mengirimkan dokumen.",
  "response": {
    "data": {
      "document_id": 16502,
      "signer": [
        {
          "page": 1,
          "props": {
            "x": 306,
            "y": 396,
            "w": 50,
            "h": 50
          },
          "user": {
            "speciment": "",
            "name": "bowo test",
            "email": null,
            "userid": "ab69d220-b697-11ee-bada-41a5d350d473"
          },
          "emet": {
            "urx": 356,
            "ury": 396,
            "llx": 306,
            "lly": 346
          },
          "sign": null,
          "type": "emet",
          "documentSize": {
            "height": 792,
            "width": 612
          }
        }
      ]
    }
  }
}