Get list of contacts

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": []
    }
  }
}

Last updated