SupportProduct Documentation
    • Introduction
    • URL Structure
    • API Key
    • Errors
    • Versioning
    • Pagination
    • Replication
    • Performance
    • Rate Limits
    • Webhooks
  • System Services
    • Companies
    • Hello World
  • Accounts
  • Ticketing
    • Getting started
    • Catalog
    • Capacity
    • Tickets
    • Reservations
    • Schedule
  • Memberships
    • Catalog
    • Membership
    • Member
    • Card
    • Payment Method
    • Lifecycle
    • Miscellaneous
    • Points
  • Speedgate
  • Attraction Wallet
  • POS
    • POS Sale
    • POS Unit
    • POS Store
    • Salesperson
    • External POS Sale
    • Global POS Entry
  • Inventory
    • Barcodes
    • Items
    • Item Ledger Entries
    • Item Categories
    • Item Variants
    • Item Translations
  • Coupon
  • Vouchers
    • Vouchers
  • Ecommerce
    • Sales Documents
  • Finance
    • General Ledger Account
    • General Ledger Entries
    • General Ledger Journal
  • Customers
    • Customers
  • PDF Designer
LogoLogo
SupportProduct Documentation
MembershipsCard

GET
https://api.npretail.app/:tenant/:environment/:company/membership/card/:cardId
GET
/:tenant/:environment/:company/membership/card/:cardId
1curl https://api.npretail.app/01234567-89ab-cdef-0123-456789abcdef/production/CRONUS%20International%20Ltd./membership/card/12345678-abcd-1234-5678-1234567890ab \
2 -H "Authorization: Bearer <apiKey>"
Try it
200ExampleGetCard
1{
2 "card": {
3 "cardNumber": "MC1234567890",
4 "createdAt": "2024-09-17T00:00:00",
5 "expiryDate": "2029-09-17",
6 "member": {
7 "blocked": false,
8 "memberId": "12345678-abcd-1234-5678-1234567890ab",
9 "memberNumber": "M123456789",
10 "address": "123 Main Street",
11 "birthday": "1980-01-01",
12 "city": "New York",
13 "country": "USA",
14 "email": "john.doe@acme.com",
15 "firstName": "John",
16 "gender": "male",
17 "hasNotes": true,
18 "hasPicture": true,
19 "lastName": "Doe",
20 "middleName": "A.",
21 "newsletter": "yes",
22 "phoneNo": "+1234567890",
23 "postCode": "12345",
24 "preferredLanguage": "EN",
25 "storeCode": "EN"
26 },
27 "membership": {
28 "membershipId": "cdef7890-abcd-0123-1234-567890abcdef",
29 "membershipNumber": "MS-DEMO-00152",
30 "communityCode": "RIVERLAND",
31 "membershipCode": "GOLD",
32 "issueDate": "2024-09-17",
33 "blocked": false,
34 "autoRenewalActivated": true,
35 "validFromDate": "2024-09-17",
36 "validUntilDate": "2025-09-16",
37 "customerNumber": "D000188",
38 "attributes": []
39 },
40 "modifiedAt": "2024-09-18T00:00:00",
41 "temporary": false,
42 "cardId": "12345678-abcd-1234-5678-1234567890ab"
43 }
44}
Was this page helpful?
Previous

Get using Number

Next
Built with
Retrieve details about a specific card using its unique card ID. This endpoint provides detailed information about the card, such as the member it belongs to, its status, and its validity.
Get using Id

Authentication

AuthorizationBearer
Bearer authentication of the form `Bearer <token>`, where token is your auth token.

Path Parameters

tenantstringRequired
Your Entra Tenant ID. [More details.](/paths#1-tenant)
environmentstringRequired
Your Business Central Environment. [More details.](/paths#2-environment)
companystringRequired
Your Business Central Company. [More details.](/paths#3-company)
cardIdUUIDRequired
Unique identifier for a card.

Headers

x-api-versiondateOptional
Used for API versioning. [More details.](/versioning)

Response

This endpoint returns an object.
cardobject
This is a composite type representing a MemberCard along with the associated Member and Membership. It includes information about the member who holds the card and the membership the card is tied to.
Unique identifier for a card.

Used for API versioning. More details.

Bearer authentication of the form Bearer <token>, where token is your auth token.

Your Entra Tenant ID. More details.

Your Business Central Environment. More details.

Your Business Central Company. More details.