Skip to main content
GET
/
api
/
v1
/
csp
/
organization
Find Organization
curl --request GET \
  --url https://sandbox.api.paylias.xyz/gateway/api/v1/csp/organization \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "admin_email": "admin@getsafepay.com",
    "admin_first_name": "Ziyad",
    "admin_last_name": "Parekh",
    "country": "PK",
    "enabled": true,
    "name": "SafePay",
    "token": "org_d09gv1s20or2svojjmt0"
  },
  "ok": true
}

Authorizations

Authorization
string
header
required

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

Response

Organization information retrieved successfully

Standard response structure for successful operations

ok
boolean

Indicates if the operation was successful

Example:

true

data
object

Contains the response data Organization information

I