v1

latestOpenAPI 3.0.12026-07-24501176.6 MB

Get Customer Notes

Retrieves notes of a specific customer.

get/customer/notes

Query parameters

mobilestring

Mobile number of the customer.

emailstring

Email ID of the customer.

external_idstring

External ID of the customer.

idinteger

Unique ID of the customer.

Response

200

Example response

{
  "response": {
    "status": {
      "success": "true",
      "code": "200",
      "message": "Operation Successful"
    },
    "customer": {
      "user_id": "15098",
      "firstname": "Catherine",
      "lastname": "Thomas",
      "mobile": "44700900999",
      "email": "catherine@example.com",
      "external_id": "ct123",
      "notes": {
        "note": [
          {
            "id": "1",
            "description": "Like to play cricket",
            "added_on": "2016-09-04 15:12:00"
          }
        ]
      },
      "item_status": {
        "success": "true",
        "code": "1000",
        "message": "Customer note retrieved successfully"
      }
    }
  }
}