Skip to content

List Beneficiaries

To retrieve a list of beneficiaries in your Slick ERP organization, you need to use your API key to authenticate the request.

Endpoint

GET /beneficiaries

Base URL:

https://api.erpslick.com/v1

Headers

Include your API key in the request headers to authenticate:

Authorization: Bearer YOUR_API_KEY

Replace YOUR_API_KEY with the API key you generated for your organization.

Example Request

Terminal window
curl -X GET "https://api.erpslick.com/v1/beneficiaries" \
-H "Authorization: Bearer YOUR_API_KEY"

Response

Terminal window
{
"beneficiaries": [
{
"id": "123",
"name": "John Doe",
"reference_code": "BNF 0001"
},
]
}