Get a Contact

Get contact

GET https://{{workspace}}.myeshopbox.com/api/v1/contact

This endpoint is required to retrieve a contact from workspace

Path Parameters

NameTypeDescription

contactCode

string

Unique identification number of contact

Headers

NameTypeDescription

Authentication

string

The Bearer token which allows access of API

{
            "accountSlug": "montecarlo",
            "contactCode": "Apparels",
            "contactName": "Apparels",
            "networkKey": "raymond",
            "gstin": "27AAKCS3399H1ZS",
            "address": {
                "country": "India",
                "pincode": "421305",
                "city": "Thane",
                "state": "Maharashtra",
                "addressLine": "Raymond Apparels Limited,Saidhara Bhiwandi"
            },
            "status": "active",
            "contactType": "vendor",
            "contact": {
                "phoneNumber": "9876543876",
                "email": "raymond.parse@eshopbox.co"
            },
            "customField": [
                {
                    "label": "occassion",
                    "internalName": "occassion",
                    "value": [
                        "eid"
                    ]
                }
            ],
            "createdAt": "2020-06-17T11:53:09.422Z",
            "updatedAt": "2020-06-17T11:53:09.422Z"
}
curl -X GET https://{{workspace}}.myeshopbox.com/api/v1/contact\    
 -H "Authorization: Bearer XXXX"

Last updated