GET
/api/public/v1/settings/companyGet company settings
Return company-level settings and credit balance.
GETExample request
curl
curl -X GET "https://www.pxb.app/api/public/v1/settings/company" \
-H "Authorization: Bearer your_access_token"200Example response
json
{
"message": "Company settings retrieved successfully!",
"content": {
"settings": {
"id": "company_789",
"reference": "Acme Inc",
"ipWhitelistEnabled": false,
"creditBalance": 12500
}
}
}