GET
/
projects
/
{projectId}
/
results
/
{referenceId}
Get latest result by referenceId
curl --request GET \
  --url http://stage-api.neurapulse.com/projects/{projectId}/results/{referenceId} \
  --header 'x-api-key: <api-key>'
{
  "referenceId": "<string>",
  "email": "<string>",
  "firstName": "<string>",
  "lastName": "<string>",
  "fullName": "<string>",
  "status": "<any>",
  "dateCompleted": "2023-11-07T05:31:56Z"
}

Authorizations

x-api-key
string
header
required

API key generated in the Portal (Account Settings → API Keys).

Path Parameters

projectId
string<uuid>
required

Your project's unique identifier. ProjectId is queryable using the /api/project route or by extracting the guid from the url while on a project's page.

referenceId
string
required

Your identifier for a test taker (1–500 chars). Set and store this in your system to enable direct lookups. Must url-encoded.

Maximum length: 500

Response

OK

email
string
required
firstName
string
required
lastName
string
required
fullName
string
required
referenceId
string | null
status
any
dateCompleted
string<date-time>