Skip to content

List Projects

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

Endpoint

GET /projects

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/projects" \
-H "Authorization: Bearer YOUR_API_KEY"

Response

Terminal window
{
"projects": [
{
"id": "123",
"name": "My Test Project",
"reference_code": "PRO 0001"
},
]
}