🚀 Digital ID portal is now live! Check out the overview to get started.
🚀 Digital ID portal is now live! Check out the overview to get started.
Start a customer verification journey using a journey ID. You can also prefill customer data. For more details, see the start journey guide.
curl --request POST \
--url https://eu.platform.go.gbgplc.com/captain/api/journey/start \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"resourceId": "2ec919f77eb9858f16a9c102913f68c2ede2e31952d3e2b8f5ca7028d5c480bc@latest",
"context": {
"subject": {
"identity": {
"firstName": "John",
"lastName": "Doe",
"dateOfBirth": "1990-01-01",
"emails": [
{
"type": "home",
"email": "john.doe@example.com"
}
]
},
"documents": [],
"biometrics": []
}
}
}
'{
"instanceId": "<string>"
}Documentation Index
Fetch the complete documentation index at: https://docs.go.gbgplc.com/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Unique identifier for the journey. Append '@latest' to use the most recent version.
"2ec919f77eb9858f16a9c102913f68c2ede2e31952d3e2b8f5ca7028d5c480bc@latest"
Prefilled identity data for the journey.
{
"subject": {
"identity": {
"firstName": "John",
"lastName": "Doe",
"dateOfBirth": "1990-01-01",
"emails": [
{
"type": "home",
"email": "john.doe@example.com"
}
]
},
"documents": [],
"biometrics": []
}
}Journey started successfully.
Unique identifier for the active journey instance.
Was this page helpful?
curl --request POST \
--url https://eu.platform.go.gbgplc.com/captain/api/journey/start \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"resourceId": "2ec919f77eb9858f16a9c102913f68c2ede2e31952d3e2b8f5ca7028d5c480bc@latest",
"context": {
"subject": {
"identity": {
"firstName": "John",
"lastName": "Doe",
"dateOfBirth": "1990-01-01",
"emails": [
{
"type": "home",
"email": "john.doe@example.com"
}
]
},
"documents": [],
"biometrics": []
}
}
}
'{
"instanceId": "<string>"
}