curl --location --request GET '/api/v2/programs'{
"data": [
{
"id": 1,
"name": "Program Name",
"description": "Program description",
"created_at": "2023-01-01T00:00:00.000000Z",
"updated_at": "2023-01-01T00:00:00.000000Z"
}
],
"links": {
"first": "http://localhost/api/v2/programs?page=1",
"last": "http://localhost/api/v2/programs?page=1",
"prev": null,
"next": null
},
"meta": {
"current_page": 1,
"from": 1,
"last_page": 1,
"path": "http://localhost/api/v2/programs",
"per_page": 15,
"to": 10,
"total": 10
}
}