Get customer

Retrieve a single customer from your Notify administration.

Get customer

GET https://api.notify.cm/v2/customers/{customer_id}

Authentication: API keys

Headers

Name
Type
Description

Authorization

string

Your test or live API key

HTTP/1.1 200 OK
Content-Type: application/hal+json

{
        "resource": "customer",
        "id": "a0f0660d-6c8d-422b-8114-e363b260521e",
        "customerCode":"10001",
        "name":"Creditpartners B.V.",
        "address": {
                "address":"Canadalaan 4",
                "postalcode":"7316 BX",
                "city":"Apeldoorn",
                "country":"NL"
        },
        "contact":"Jan Post",
        "phone":"0882441100",
        "mobile":"0612345678",
        "email":"[email protected]",
        "invoiceEmail":"[email protected]",
        "registrationNumber":"123456",
        "language":"dutch"  
}

Example

curl -X GET https://api.notify.cm/v2/customers/a0f0660d-6c8d-422b-8114-e363b260521e \
   -H "Authorization: Bearer test_R7HQ9QpXgx8J32rW9X9UyXjgfNk6C7TQ2UD8M5rwf8vVnYxnSETvSuEC6SKFW8Ug" \

Response

HTTP/1.1 200 OK
Content-Type: application/hal+json

{
        "resource": "customer",
        "id": "a0f0660d-6c8d-422b-8114-e363b260521e",
        "customerCode":"10001",
        "name":"Creditpartners B.V.",
        "address": {
                "address":"Canadalaan 4",
                "postalcode":"7316 BX",
                "city":"Apeldoorn",
                "country":"NL"
        },
        "contact":"Jan Post",
        "phone":"0882441100",
        "mobile":"0612345678",
        "email":"[email protected]",
        "invoiceEmail":"[email protected]",
        "registrationNumber":"123456",
        "language":"dutch"  
}

Last updated

Was this helpful?