GET /v1/admin/subscription/users/notSeenAfter

Retrieves Subscription users

Query parameters

  • notSeenAfterTimestamp integer(int64) Required

    Not seen after datetime (epoch milliseconds)

  • pageNumber integer(int32)

    Page number

    Default value is 0.

  • pageSize integer(int32)

    Number of users per page

    Minimum value is 1, maximum value is 1000. Default value is 200.

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/users/notSeenAfter
curl \
 --request GET 'https://api.aptrinsic.com/v1/admin/subscription/users/notSeenAfter?notSeenAfterTimestamp=42'
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"
        }
      ]
    }
  ]
}