GET api/Customer/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

Customer
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

FullName

string

None.

Email

string

None.

Msisdn

string

None.

PasswordMD5

string

None.

DeliverTokenEmail

boolean

None.

DeliverTokenText

boolean

None.

Bank

integer

None.

RegisterDateUtc

date

None.

ManagementAffiliateID

globally unique identifier

None.

SuperAffiliateCollection

Dictionary of globally unique identifier [key] and globally unique identifier [value]

None.

AdministrativeAffiliateID

globally unique identifier

None.

Otk

string

None.

Otp

string

None.

TimeStamp

Collection of byte

None.

Response Formats

application/json, text/json

Sample:
{
  "id": "6fdaf0db-8d37-412a-8984-21f84f8cd217",
  "full-name": "sample string 2",
  "email": "sample string 3",
  "msisdn": "sample string 4",
  "password-md5": "sample string 5",
  "deliver-token-email": true,
  "deliver-token-text": true,
  "bank": 8,
  "register-date-utc": "2026-02-20T11:37:14.9796428+00:00",
  "management-affiliate-id": "aabb345e-1d12-4bd6-b92b-9146c2a7b311",
  "super-affiliate-collection": {
    "30b1e705-cc1b-4af2-954e-6721c4d39cf0": "d3beaf9c-9c78-49ae-9ec2-59afcb58e517",
    "ffa041e8-5d9a-4684-84fd-3ff032c1e1c0": "7a106849-1a96-49f7-86d8-3b20daf87bed"
  },
  "administrative-affiliate-id": "42e2c392-e21c-4c56-84bf-b1f71bca72da",
  "otk": "sample string 11",
  "otp": "sample string 12",
  "time-stamp": "QEA="
}

application/xml, text/xml

Sample:
<Customer xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Caprica.Models">
  <AdministrativeAffiliateID>42e2c392-e21c-4c56-84bf-b1f71bca72da</AdministrativeAffiliateID>
  <Bank>8</Bank>
  <DeliverTokenEmail>true</DeliverTokenEmail>
  <DeliverTokenText>true</DeliverTokenText>
  <Email>sample string 3</Email>
  <FullName>sample string 2</FullName>
  <Id>6fdaf0db-8d37-412a-8984-21f84f8cd217</Id>
  <ManagementAffiliateID>aabb345e-1d12-4bd6-b92b-9146c2a7b311</ManagementAffiliateID>
  <Msisdn>sample string 4</Msisdn>
  <Otk>sample string 11</Otk>
  <Otp>sample string 12</Otp>
  <PasswordMD5>sample string 5</PasswordMD5>
  <RegisterDateUtc>2026-02-20T11:37:14.9796428+00:00</RegisterDateUtc>
  <SuperAffiliateCollection xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:KeyValueOfguidguid>
      <d2p1:Key>30b1e705-cc1b-4af2-954e-6721c4d39cf0</d2p1:Key>
      <d2p1:Value>d3beaf9c-9c78-49ae-9ec2-59afcb58e517</d2p1:Value>
    </d2p1:KeyValueOfguidguid>
    <d2p1:KeyValueOfguidguid>
      <d2p1:Key>ffa041e8-5d9a-4684-84fd-3ff032c1e1c0</d2p1:Key>
      <d2p1:Value>7a106849-1a96-49f7-86d8-3b20daf87bed</d2p1:Value>
    </d2p1:KeyValueOfguidguid>
  </SuperAffiliateCollection>
  <TimeStamp>QEA=</TimeStamp>
</Customer>