---
title: "Get subscription details"
method: GET
path: "/v1/subscriptions/{subscriptionId}"
tags: ["Subscription"]
---

# Get subscription details

`GET /v1/subscriptions/{subscriptionId}`

Retrieves detailed information about a specific subscription.

## Path parameters

- `subscriptionId` string, uuid, required

## Response `200`

Subscription details retrieved successfully

- SubscriptionResponseWrapper
  - `data` object, nullable
    - `subscriptionId` string, uuid
    - `subscriptionProductId` string, uuid, nullable
    - `status` string — Subscription status. Values: PENDING_USER_AUTH, ACTIVE, CANCELLED, EXPIRED, REJECTED
    - `customer` CustomerResponse
      - `customerUniqueIdentifier` string
      - `customerName` string, nullable
      - `customerPersonalId` string, nullable
      - `customerAccountNumber` string, nullable
      - `customerAccountAgencyNumber` string, nullable
      - `customerBankName` string, nullable
    - `channel` string
    - `authorizationType` string
    - `frequency` string
    - `retryPolicy` RetryPolicy
      - `type` string, required — Retry policy type. Valid values: PIX_SPECIFIC (auto-configured for PIX), FIXED_RETRY (requires maxRetries and retryIntervalDays), NOT_ALLOWED (no retries).
      - `maxRetries` integer, nullable — Maximum number of retry attempts. Required when type is FIXED_RETRY.
      - `retryIntervalDays` integer, nullable — Days between retry attempts. Required when type is FIXED_RETRY.
    - `startDate` string, date-time, nullable
    - `expirationDate` string, date-time, nullable
    - `amount` AmountModel
      - `type` string, nullable — Amount type. Valid values: FIXED (requires fixedValue), VARIABLE (requires minValue and maxValue).
      - `fixedValue` integer, nullable — Fixed payment amount in cents. Required when type is FIXED.
      - `minValue` integer, nullable — Minimum payment amount in cents. Required when type is VARIABLE.
      - `maxValue` integer, nullable — Maximum payment amount in cents. Required when type is VARIABLE.
      - `currency` string, required — ISO currency code (3 characters)
    - `notificationUrl` string, uri
    - `country` string
    - `automaticScheduleAllowed` boolean
    - `description` string, nullable
    - `language` string
    - `internalReferenceId` string, nullable
    - `metadata` object, nullable
    - `cancellationReason` string, nullable
    - `cancellationDate` string, date-time, nullable
    - `cancellationStatus` string, nullable
    - `checkout` CheckoutModel
      - `checkoutUrl` string, uri, nullable — URL to display QR code (coming soon)
      - `payload` PayloadModel
        - `code` string, nullable — EMV code for 'copia e cola' (copy and paste). Present for USER_INTERACTION authorization.
        - `image` string, nullable — QR code image in base64 format (data URI). Present for USER_INTERACTION authorization.
  - `errors` ApiError[]
    - `errorCode` string
    - `errorMessage` string
  - `status` boolean — Indicates if the request was successful

## Other responses

- `404` — Subscription not found

---

[API](https://skmtc.net/payretailers/apis/transaction.md) · [All operations](https://skmtc.net/payretailers/apis/transaction/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/payretailers/transaction/revisions/b022ee3a593d/schema)
