Get Organization

GET /orgs/{organization}

Each funding partner in the tree tracker is an Organization, and they have their own unique URL, with a UUID. Sales will provide you your UUID and that will act as your entrypoint. New orders will show up here, and you can check the status of those orders or call their endpoint for more details.

Path parameters

  • organization string(uuid) Required

    Unique identifier given to an organization by Protect Earth support.

Responses

GET /orgs/{organization}
curl \
 -X GET https://hostname/orgs/61f423e5-3cac-4e82-a520-b233730637bb
Response examples (200)
{
  "id": "61f423e5-3cac-4e82-a520-b233730637bb",
  "name": "Your Amazing Company",
  "orders": [
    {
      "id": "53f7bd7b-2ee2-4be4-a15b-e09c76a150f9",
      "receivedOn": "2021-11-22T16:37:15.000Z",
      "isFulfilled": false,
      "orderedUnits": 1000,
      "allocatedUnits": 700,
      "href": "https://api.protect.earth/orders/53f7bd7b-2ee2-4be4-a15b-e09c76a150f9.json"
    }
  ]
}