---
title: "Get subscription product details"
method: GET
path: "/v1/subscription-products/{subscriptionProductId}"
tags: ["SubscriptionProduct"]
---

# Get subscription product details

`GET /v1/subscription-products/{subscriptionProductId}`

Retrieves detailed information about a specific subscription product.

## Path parameters

- `subscriptionProductId` string, uuid, required

## Response `200`

Product details retrieved successfully

- SubscriptionProductResponseWrapper
  - `data` object, nullable
    - `subscriptionProductId` string, uuid
    - `shopId` integer
    - `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.
    - `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)
    - `automaticScheduleAllowed` boolean
    - `notificationUrl` string, uri
    - `country` string
    - `language` string
    - `description` string, nullable
    - `internalReferenceId` string, nullable
    - `isActive` boolean
    - `metadata` object, nullable
  - `errors` ApiError[]
    - `errorCode` string
    - `errorMessage` string
  - `status` boolean — Indicates if the request was successful

## Other responses

- `404` — Product 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)
