Skip to content

Latest commit

 

History

History
50 lines (36 loc) · 881 Bytes

SUBSCRIPTIONS.md

File metadata and controls

50 lines (36 loc) · 881 Bytes

Subscriptions API

Table of Contents

Info

Authorization is not required.


GET /subscriptions

Parameter In Required Default Type
email query string

Request example:

POST <YOUR-HOST-HERE>/api/v1/subscriptions?email=valid@mockmail.com

Response:

{
  "status": 200,
  "message": "OK",
  "data": [
    {
      "id": 5,
      "customerEmail": "valid@mockmail.com",
      "subscriptionPlanName": "mock-name",
      "subscriptionPlanPrice": 1500
    },
    ...
  ]
}

⬆ back to the top

⬅️ back to the root