Get a member in the roster.
GET {baseUrl}/v1/rosters/{customerKey}/members/{fid}| Name | In | Required | Type | Description |
|---|---|---|---|---|
| baseUrl | path | Yes | string | The API URL. |
| customerKey | path | Yes | string | The customer key or me. |
| fid | path | Yes | string (format: FID) | FID of the member. |
| Name | Type | Description |
|---|---|---|
| 200 OK | Member | Success |
| 404 Not Found | Member not found |
pdc.member_read
GET /v1/rosters/me/members/999999915Status code: 200
{
"fid": "999999915",
"fullName": "Philip James Testermancho",
"birthDate": "1978-08-08",
"boardActionStatus": "Alerted",
"currentReport": {
"reportId": 2447717,
"reportDateUtc": "2023-01-18T19:13:07Z",
"reportGeneratedBy": "apiuser",
"reportStatus": "Succeeded",
"isComplete": true,
"boardActionStatus": "Alerted"
}
}GET /v1/rosters/me/members/999999907Status code: 200
{
"fid": "999999907",
"fullName": "Alexa Wood Checkey",
"birthDate": "1988-09-02",
"boardActionStatus": "Cleared",
"currentReport": {
"reportId": 2447718,
"reportDateUtc": "2023-01-18T19:23:07Z",
"reportGeneratedBy": "apiuser",
"reportStatus": "Succeeded",
"isComplete": true,
"boardActionStatus": "Cleared"
}
}