> ## 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.

> Retrieve the list of tasks assigned to a GBG GO journey instance to determine what actions the customer must complete. Deprecated.

# Retrieve tasks



## OpenAPI

````yaml docs/go-v2/openapi-v2.json POST /journey/task/list
openapi: 3.0.4
info:
  title: GBG GO API Reference V2
  description: >-
    The GBG GO V2 API enables authentication, customer journey execution, task
    management, and tracking verification progress.
  version: 2.0.0
  license:
    name: MIT
servers:
  - url: https://eu.platform.go.gbgplc.com/v2/captain/
  - url: https://us.platform.go.gbgplc.com/v2/captain/
  - url: https://au.platform.go.gbgplc.com/v2/captain/
  - url: https://api.auth.gbgplc.com/as/token.oauth2
security:
  - bearerAuth: []
paths:
  /journey/task/list:
    post:
      summary: Retrieve tasks
      description: >-
        Fetch tasks assigned to a customer during an active journey. This
        endpoint is deprecated in v2. If you're unsure how tasks work, the
        [retrieve tasks
        guide](/docs/go-v2/developer-integration/execute-customer-journeys/retrieve-tasks-step)
        can help.
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                instanceId:
                  type: string
                  description: Unique identifier for the journey instance.
                  example: PiIuACmx8Q8R7qPnAkLAqBAT
              required:
                - instanceId
      responses:
        '201':
          description: Tasks retrieved successfully.
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    description: Current status of the journey.
                    example: InProgress
                  instanceId:
                    type: string
                    description: Unique identifier for the instance.
                  tasks:
                    type: array
                    items:
                      type: object
                      properties:
                        taskId:
                          type: string
                          description: Unique identifier for each task.
                          example: TkoviRO58Q8R7qPnAkLAqBAT
                        variantId:
                          type: string
                          description: Identifier for the task variant.
                          example: age_verification_all_ssn_dob_required
      deprecated: true
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````