RefRef LogoRefRef

Get program by ID

Retrieve a specific program by its ID

GET
/programs/{programId}

Authorization

api-key<token>

API key authentication

In: header

api-key<token>

API key authentication via query parameter

In: query

Path Parameters

programIdRequiredstring

ID of the program to retrieve

Format: "uuid"
curl -X GET "https://api.refref.com/v1/programs/497f6eca-6276-4993-bfeb-53cbbbba6f08" \
  -H "api-key: <token>"

Successful operation

{
  "data": {
    "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
    "name": "string",
    "description": "string",
    "startDate": "2019-08-24",
    "endDate": "2019-08-24",
    "status": "active",
    "createdAt": "2019-08-24T14:15:22Z",
    "updatedAt": "2019-08-24T14:15:22Z"
  }
}