Get Organization API
Welcome to the documentation for the Get Organization API. This API returns a single organization.
Base URL
{baseURL}/v1/organizations/:organizationId | GET
Sample Request
curl -X GET {baseURL}/v1/organizations/:organizationId \
-H 'Content-Type: application/json' \
Sample 200 Response
{
"message": "Organization retrieved successfully",
"data": {
"_id": "64d2beedefc5fbb9ca24753f",
"business_name": "boi",
"status": "active",
"plan": "free",
"address": "lagos_nigeria",
"createdAt": "2023-08-08T22:17:17.595Z",
"updatedAt": "2023-08-09T04:43:51.171Z"
},
"success": true
}