Get details

By issuing a GET request on the organization endpoint, you can retrieve your own organization's details.

Note that a delegatee is an organization to which an organization is able to assign tasks.

curl -X GET "https://store.bponi.com/api/v2/organization" \
       -u "cd3b3de84cc1ee040bf06512d233719c:"
1
2
{
  "id": "yAM*fDkztrT3gUcz9mNDgNOL",
  "timeCreated": 1454634415000,
  "timeLastModified": 1455048510514,
  "name": "Fine Eateries",
  "email": "fe@bponi.com",
  "image": "5cc28fc91d7bc5846c6ce9c1",
  "timezone": "America/Los_Angeles",
  "country": "US",
  "delegatees": [
    "cBrUjKvQQgdRp~s1qvQNLpK*"
  ]
}
1
2
3
4
5
6
7
8
9
10
11
12
13

Get delegatee details

By specifying an organization ID on the organizations endpoint, you can retrieve the details of an organization with which you are connected.

In cases where an invalid delegateeID is provided, an error message will be thrown.

curl -X GET "https://store.bponi.com/api/v2/organizations/cBrUjKvQQgdRp~s1qvQNLpK*" \
       -u "cd3b3de84cc1ee040bf06512d233719c:"
1
2
{
  "id": "cBrUjKvQQgdRp~s1qvQNLpK*",
  "name": "Engineering",
  "email": "dev@bponi.com",
  "timezone": "America/Los_Angeles",
  "country": "US"
}
1
2
3
4
5
6
7
Last Updated: 11/29/2021, 10:25:26 PM