GET /v1/admin/subscription

Retrieves Subscription detail for the current sub

Responses

  • 200 */*

    Success

    Hide response attributes Show response attributes object
    • id string Required
    • name string
    • iconUrl string
    • timeZone string
    • website string
    • description string
    • products array[object]
      Hide products attributes Show products attributes object

      Product Detail

      • description string
      • name string
      • productKeys array[object]
        Hide productKeys attributes Show productKeys attributes object

        Product Key Detail

        • channel string
        • productKey string
        • url string
  • 400

    Bad request

  • 401

    Unauthorized or bad API Key

  • 404

    Account not found

  • 429

    Rate limit exceeded

GET /v1/admin/subscription
curl \
 --request GET 'https://api.aptrinsic.com/v1/admin/subscription'
Response examples (200)
{
  "id": "string",
  "name": "string",
  "iconUrl": "string",
  "timeZone": "string",
  "website": "string",
  "description": "string",
  "products": [
    {
      "description": "string",
      "name": "string",
      "productKeys": [
        {
          "channel": "string",
          "productKey": "string",
          "url": "string"
        }
      ]
    }
  ]
}