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. Auth

Get list of contacts

PreviousGenerate access tokenNextDocuments

Last updated 7 months ago

GET/v1/auth/list_user

Returns the list of available contacts

List Parties

get
Query parameters
limitintegerOptionalExample: 100
Header parameters
x-access-tokenstringOptionalExample: {{momofingo_token}}
Responses
200
OK
application/json
get
GET /auth/list_user HTTP/1.1
Host: {{base_url}}v1
Accept: */*
200

OK

{
  "code": 200,
  "data": {
    "user": null,
    "pagination": {
      "total_data": 1,
      "total_page": 1,
      "total_display": 1,
      "first_page": false,
      "last_page": false,
      "prev": 0,
      "current": 1,
      "next": 0,
      "limit": 100,
      "detail": []
    }
  }
}