GET api/CustomerPurchaseBlockCollection/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

Collection of PurchaseBlock
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

CustomerId

globally unique identifier

None.

Msisdn

string

None.

Suffix

string

None.

CreatedUtc

date

None.

ExpiredUtc

date

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "id": "54103943-346c-4767-ab7d-352d727a0746",
    "customer-id": "ee312f2e-db24-4c27-a311-051fcca1ad06",
    "msisdn": "sample string 3",
    "suffix": "sample string 4",
    "created-utc": "2026-02-20T11:40:16.1349524+00:00",
    "expired-utc": "2026-02-20T11:40:16.1349524+00:00"
  },
  {
    "id": "54103943-346c-4767-ab7d-352d727a0746",
    "customer-id": "ee312f2e-db24-4c27-a311-051fcca1ad06",
    "msisdn": "sample string 3",
    "suffix": "sample string 4",
    "created-utc": "2026-02-20T11:40:16.1349524+00:00",
    "expired-utc": "2026-02-20T11:40:16.1349524+00:00"
  }
]

application/xml, text/xml

Sample:
<ArrayOfPurchaseBlock xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Caprica.Models">
  <PurchaseBlock>
    <CreatedUtc>2026-02-20T11:40:16.1349524+00:00</CreatedUtc>
    <CustomerId>ee312f2e-db24-4c27-a311-051fcca1ad06</CustomerId>
    <ExpiredUtc>2026-02-20T11:40:16.1349524+00:00</ExpiredUtc>
    <Id>54103943-346c-4767-ab7d-352d727a0746</Id>
    <Msisdn>sample string 3</Msisdn>
    <Suffix>sample string 4</Suffix>
  </PurchaseBlock>
  <PurchaseBlock>
    <CreatedUtc>2026-02-20T11:40:16.1349524+00:00</CreatedUtc>
    <CustomerId>ee312f2e-db24-4c27-a311-051fcca1ad06</CustomerId>
    <ExpiredUtc>2026-02-20T11:40:16.1349524+00:00</ExpiredUtc>
    <Id>54103943-346c-4767-ab7d-352d727a0746</Id>
    <Msisdn>sample string 3</Msisdn>
    <Suffix>sample string 4</Suffix>
  </PurchaseBlock>
</ArrayOfPurchaseBlock>