v1

latestOpenAPI 3.0.3Moneris2026-07-2454487645.8 KB
Customers

Retrieve Customer

Retrieve a customer by their Id.

get/customers/{customer-id}

Response

The customer corresponding to the provided customerId

customerIdstring required

Unique Identification for the Customer

merchantIdstring required

Thirteen character long identification provided to merchants by Moneris.

createdAtstring date-time required

Time at which the object was created

modifiedAtstring date-time nullable

Time at which the object was modified

firstNamestring nullable

First name.

middleNamestring nullable

Customer's middle name.

lastNamestring nullable

Last name.

companyNamestring nullable

Identifies the associated company name

phoneNumberstring nullable

Phone number.

emailstring email nullable

Contains the customer's email address.

For standard email protocols, visit: https://www.rfc-editor.org/rfc/rfc5322

customDataCustomData nullable

Merchant can send custom meta data with the transaction in this object. Moneris will echo these values back in response.

Example response

{
  "customerId": "ci0105ARZ3NDEKTSV4RRFFQ69G5FAV",
  "merchantId": "0123456789101",
  "createdAt": "2019-07-30T06:43:40.252Z",
  "modifiedAt": "2019-07-30T06:43:40.252Z",
  "firstName": "John",
  "middleName": "J.",
  "lastName": "Doe",
  "companyName": "SP Ltd",
  "address": {
    "unitNumber": "123A",
    "streetNumber": "3300",
    "streetName": "Bloor Street West",
    "city": "Toronto",
    "province": "ON",
    "postalCode": "M8X 2X2",
    "country": "CA"
  },
  "shippingAddress": {
    "unitNumber": "123A",
    "streetNumber": "3300",
    "streetName": "Bloor Street West",
    "city": "Toronto",
    "province": "ON",
    "postalCode": "M8X 2X2",
    "country": "CA"
  },
  "phoneNumber": "+18663197450",
  "email": "moneris@moneris.com"
}