GetCustomer

Usage
Retrieve a customer by the ID
Basic URI
/DesktopModules/RazorCart/Services/v1/Customers/{id}
Parameters
int id               The customer Id
AUTH
Bearer JWT
Required Scope(s)
customers
 
Request
GET https://domain.com/DesktopModules/RazorCart/Services/v1/Customers/6 HTTP/1.1
Authorization: Bearer {access_token}
Content-Type: application/json
 
Response
{
  "CustomerID": 6,
  "FirstName": "Daniel",
  "LastName": "Parr",
  "Address1": "3810 Woodridge Lane",
  "Address2": null,
  "City": "Memphis",
  "Country": "US",
  "State": "TN",
  "Zip": "38118",
  "HomePhone": "901-362-1605",
  "CellPhone": "901-447-1401",
  "WorkPhone": null,
  "Email": "DanielSParr@rhyta.com",
  "AccountNo": null,
  "MaskAccountNo": null,
  "ABAExpire": null,
  "BillingAdress": "3810 Woodridge Lane",
  "BillingZip": "38118",
  "DNNLogin": "Naristry",
  "DateCreated": "2017-02-23T13:22:18.50",
  "Contact": false,
  "IPAddress": "127.0.0.1",
  "UDF": null,
  "PortalID": 0,
  "CompanyName": null,
  "BuyerRole": null,
  "AnniversaryDate": "1991-02-14T00:00:00",
  "CreditLimit": 0,
  "BidLimit": 0,
  "ModifiedBy": null,
  "DateModified": "2017-02-23T13:22:18.50",
  "TaxID": null,
  "StoreID": 1,
  "TotalRecords": 11,
  "MoreRecords": 0
}

Add Feedback