GET
/
dashboard
curl --request GET \
  --url https://api.helpyousponsor.com/v1/dashboard \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "org": {},
    "organization": "Organization Name"
  },
  "plan": "pro",
  "amount": 39,
  "last_payment_date": "2022-12-31",
  "last_payment_amount": 39,
  "client_status": "active"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json
Dashboard data
data
object
plan
string
Example:

"pro"

amount
number
Example:

39

last_payment_date
string
Example:

"2022-12-31"

last_payment_amount
number
Example:

39

client_status
string
Example:

"active"