IntershopIOM - 2.9.4 - GDPR

IOM GDPR REST API (2.9.4.0)

Download OpenAPI specification:Download

The IOM GDPR REST API supports programmatic access to GDPR related objects.

Authentication

basicAuth

Basic Authentication

Security Scheme Type HTTP
HTTP Authorization Scheme basic

bearerAuth

JWT Bearer token

Security Scheme Type HTTP
HTTP Authorization Scheme bearer
Bearer format "JWT"

shop

API endpoints, that could be used by the shop.

Get GDPR relevant customer data

Returns GDPR relevant customer data for a given shopCustomerNumber and shopName.

Authorizations:
path Parameters
shopCustomerNumber
required
string

The customer number of the shop

shopName
required
string

The shop name

Responses

200

OK

401

Authentication information is missing or invalid

403

Forbidden

404

Not Found

get /shops/{shopName}/customers/{shopCustomerNumber}
{protocol}://{domain}:{port}/rest/gdpr/shops/{shopName}/customers/{shopCustomerNumber}

Response samples

Content type
application/vnd.intershop.customer.v3+json
Copy
Expand all Collapse all
{
  • "creationDate": "2020-04-16T16:12:24Z",
  • "customerType": "b2c",
  • "dayOfBirth": "2020-04-16",
  • "firstName": "Bob",
  • "hasNewsletter": false,
  • "isActive": true,
  • "isNewCustomer": true,
  • "lastName": "Buyer",
  • "gender": "male",
  • "shopCustomerNo": "BB002",
  • "shopCustomerNumber": "BB002",
  • "title": "string",
  • "email": "b.buyer@bbcompany.de",
  • "fax": "string",
  • "mobilePhone": "string",
  • "phone1": "string",
  • "phone2": "string",
  • "companyName": "string",
  • "bankAccounts":
    [
    ],
  • "addresses":
    [
    ],
  • "orders":
    [
    ],
  • "invoiceAndCreditNotes":
    [
    ],
  • "customerBalances":
    [
    ]
}