Skip to main content

Workspace APIs

Obtain details for your workspace

Grant Lonie avatar
Written by Grant Lonie
Updated over 3 weeks ago

Workspace handle your account title, branding and subscription information

Read Workspace

Endpoint:

GET https://api.momentifyapp.com/v1/workspace

Sample Request:

curl -X GET "https://api.momentifyapp.com/v1/workspace" \
-H "Authorization: [Your API Key]" \
-H"Content-Type:application/json"

Response

Returns a JSON object containing the event object.

Sample Response:

{
"scope": "emp",
"isArchived": false,
"created": 1741292070064,
"createdBy": "user id",
"title": "Acme Inc.",
"subscription": {
"billingFrequency": "yearly",
"limitsResetDate": 1746024900394,
"nextPaymentDueDate": 1777560900000,
"plan": "enterprise"
},
"hideBranding": false,
"branding": {
"hideBranding": false
},
"updatedBy": "user id",
"updated": 1761187853640,
}
Did this answer your question?