List
Parameters
Example
curl -X POST \
v1/pathways/list \
-H 'Authorization: Basic <Your Base64 Encoded Token>' \
-d '{
"pathways" : ["Pathway B","Pathway B"]
}'Success Response
EnrolmentsLast updated
curl -X POST \
v1/pathways/list \
-H 'Authorization: Basic <Your Base64 Encoded Token>' \
-d '{
"pathways" : ["Pathway B","Pathway B"]
}'Last updated
{
"status": "success",
"data": [
{
"pathway" : {
"name": "My Pathway",
"ID" : "FAPW-GWRG-02HU"
},
"enrolments": [
{
"firstname": "Test",
"lastname": "User",
"email": "test@example.com",
"telephone" : "",
"country": "South Africa",
"city": "Johannesburg",
"groups" : ["Group A","Group B"],
"status": {
"level": 1,
"state": "In Progress",
"progress": 10,
"version": "1.0.1",
"timestamp": "2020-10-09T08:43:30+02:00",
"joined": "2020-10-09T08:43:30+02:00"
}
},
...etc
]
},
...etc
],
"hash": "f114aeba57bebe5e53b612d17d24f38d",
"response_time": 0.10516619682312012
}