Skip to main content

Account Holders

Access rights

Following access rights need to be enabled for API usage in the MyPuro Portal to use these endpoints:

  • Read Account Holders to list and get account holder details

See Access management for more details about enabling access to MyPuro resources.

List Account Holders

Firstly, to check that your API Keys work as expected, make a request to the GET /account-holders endpoint. You should be able to see your own Account Holder information returned in the response. If other Puro.earth Account Holders have granted API access for their resources to you, you would also see their information listed in the response. See the Access sharing section for more details about sharing access to other Account Holders.

List account holders
curl -X 'GET' "/account-holders" \
-H "Accept: application/json" \
-H "Authorization: Basic $BASIC"
object (PaginationData)
Array of objects (AccountHolder) <= 100 items
{
  • "pagination": {
    },
  • "data": [
    ]
}