Skip to main content
POST
/
journey
/
interaction
/
submit
Submit Interaction
curl --request POST \
  --url https://eu.platform.go.gbgplc.com/v2/captain/journey/interaction/submit \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "instanceId": "PiKR2O0IjyUR8KV3RviKt4we",
  "interactionId": "grn:::gbg:design:interaction:segment1@latest",
  "participants": [
    {
      "domainElementId": "FullName"
    },
    {
      "domainElementId": "DateOfBirth"
    },
    {
      "domainElementId": "CurrentAddress"
    }
  ],
  "context": {
    "subject": {
      "identity": {
        "currentAddress": {
          "lines": [
            "99 STATE ST"
          ],
          "locality": "TUPELO",
          "dependentLocality": "MS",
          "postalCode": "38801",
          "country": "US"
        },
        "dateOfBirth": "2007-11-22",
        "firstName": "RED",
        "lastNames": [
          "HAWK"
        ]
      }
    }
  }
}
'
{
  "status": "success"
}

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.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
instanceId
string
required

Journey instance identifier

interactionId
string
required

Interaction identifier

context
object

Subject data to submit for the interaction. See the user data schema for the full structure.

participants
object[]

List of participants involved in the interaction

Response

Success

status
enum<string>
required

Indicates the interaction was submitted successfully

Available options:
success