curl --request GET \
--url https://nimbussuite.com/api/v1/user/data \
--header 'Authorization: Bearer <token>'{
"subscription": {
"plan_id": "<string>",
"plan_name": "<string>",
"status": "<string>",
"stripe_customer_id": "<string>"
},
"orgSubscription": {
"plan_id": "<string>",
"plan_name": "<string>",
"status": "<string>",
"stripe_customer_id": "<string>",
"org_id": "<string>"
},
"permissions": {},
"orgId": "<string>",
"isFirstLogin": true,
"mfaFactors": [
{
"id": "<string>",
"friendlyName": "<string>"
}
]
}curl --request GET \
--url https://nimbussuite.com/api/v1/user/data \
--header 'Authorization: Bearer <token>'{
"subscription": {
"plan_id": "<string>",
"plan_name": "<string>",
"status": "<string>",
"stripe_customer_id": "<string>"
},
"orgSubscription": {
"plan_id": "<string>",
"plan_name": "<string>",
"status": "<string>",
"stripe_customer_id": "<string>",
"org_id": "<string>"
},
"permissions": {},
"orgId": "<string>",
"isFirstLogin": true,
"mfaFactors": [
{
"id": "<string>",
"friendlyName": "<string>"
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Was this page helpful?