Skip to main content

Find a specific subscription

GET 

/recurrency/subscriptions/:subscriptionId

This endpoint is used to retrieve the details of a specific subscription based on the provided ID. Upon accessing this endpoint, the system returns the full subscription details, including the associated plan, customer, status, start date, end date, and any other relevant details.

Request​

Path Parameters

    subscriptionId uuidrequired
    Example: 8086bfd7-6241-4f76-81d8-70460533ce74

Responses​

OK

Schema

    name string
    email string
    startDate date-time
    endDate date-time
    amount int32
    isActive boolean

    card

    object

    cardNumber string
    brandName string
    cardholderName string
    expirationMonth int32
    expirationYear int32

    charges

    object[]

  • Array [

  • id uuid
    status string
    chargedAt date-time
    amount int32
  • ]

  • plan

    object

    id string
    billingCycle string
    totalBillingCycles int32
    initialGraceCycles int32

    initialFee

    object

    description string
    amount int32
    cycles int32
    tag string
    paymentType string
    amount int32
    enabled boolean

    Indicates if the plan is enabled or not.

    traceKey uuid
Loading...