Kyzpay
  1. Stats
Kyzpay
  • JeudiMerci
    • Generate E-Cards
      POST
    • Synchronize offers with partner API
      POST
    • Receive webhook events
      POST
    • List E-Cards
      GET
    • Get E-Card Details
      GET
    • Delete E-Card
      DELETE
  • Stats
    • Extract JDM Accounts
      POST
    • Download Export File
      GET
    • Ticket Statistics
      POST
  • Schemas
    • Schemas
      • AnotherEventTypeResource
      • ECardPurchaseRequest
      • ECardPurchaseResponse
      • Account
      • GiftCardPurchaseCompletedResource
      • ECardResponseTicket
      • AccountContact
      • HTTPValidationError
      • AccountCurrency
      • KyzPayCodeType
      • AccountsExtractResponse
      • KyzPayOfferDto
      • AccountsFilter
      • KyzPayOfferType
      • KyzPayUsageLocation
      • ValidationError
      • WebhookPayload
      • ExportFormat
      • GiftCardPurchaseFailedResource
      • MandateType
      • TicketFilter
      • TicketStatisticsResponse
  1. Stats

Extract JDM Accounts

POST
/jdm/accounts/statistics
Extract accounts with JDM currency and their contact information

Request

Authorization
API Key
Add parameter in header
x-api-key
Example:
x-api-key: ********************
or
Body Params application/jsonRequired

Example
{
    "limit": 0,
    "include_contact_info": true,
    "export_format": "json"
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://jdm-616556849502.europe-west1.run.app/jdm/accounts/statistics' \
--header 'x-api-key: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "limit": 0,
    "include_contact_info": true,
    "export_format": "json"
}'

Responses

🟢200OK
application/json
Successful Response
Body

Example
{
    "total_count": 0,
    "accounts": [
        {
            "path": "string",
            "id": "string",
            "phone_number": "string",
            "accountId": 0,
            "accountType": "string",
            "clientId": 0,
            "clientName": "string",
            "currency": {
                "code": "string",
                "displaySymbol": "string",
                "name": "string"
            },
            "officeId": 0,
            "contact": {
                "phone": "string",
                "email": "string",
                "profile_path": "string",
                "profile_id": "string"
            }
        }
    ],
    "export_file": "string",
    "export_format": "json"
}
🟠422Parameter Error
Modified at 2025-09-01 15:20:10
Previous
Delete E-Card
Next
Download Export File
Built with