> ## Documentation Index
> Fetch the complete documentation index at: https://help.neurapulse.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List redirect URIs

> Returns a paginated list of redirect URIs for the workspace.



## OpenAPI

````yaml https://api.neurapulse.com/openapi/v1.json get /workspace/redirect-uris
openapi: 3.1.1
info:
  title: api-service | v1
  version: 1.0.0
servers:
  - url: https://api.neurapulse.com
security:
  - ApiKey: []
tags:
  - name: Project Results
  - name: Projects
  - name: Test Takers
  - name: Workspace
paths:
  /workspace/redirect-uris:
    get:
      tags:
        - Workspace
      summary: List redirect URIs
      description: Returns a paginated list of redirect URIs for the workspace.
      operationId: GetRedirectUris
      parameters:
        - name: page
          in: query
          description: 'Page number, starting at 1. Default: 1.'
          schema:
            pattern: ^-?(?:0|[1-9]\d*)$
            type:
              - integer
              - string
            format: int32
            default: 1
        - name: pageSize
          in: query
          description: 'Items per page (1–100). Default: 100.'
          schema:
            pattern: ^-?(?:0|[1-9]\d*)$
            type:
              - integer
              - string
            format: int32
            default: 100
        - name: order
          in: query
          description: 'Sort direction. One of: asc, desc. Default: asc.'
          schema:
            $ref: '#/components/schemas/OrderByType'
            default: Asc
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                type: array
                items:
                  type: string
            application/json:
              schema:
                type: array
                items:
                  type: string
            text/json:
              schema:
                type: array
                items:
                  type: string
        '400':
          description: Bad Request
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            text/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
        '401':
          description: Unauthorized
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            text/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
        '403':
          description: Forbidden
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            text/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
        '404':
          description: Not Found
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            text/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
components:
  schemas:
    OrderByType:
      enum:
        - Asc
        - Desc
      type: string
      example: Asc
    ProblemDetails:
      type: object
      properties:
        type:
          type:
            - 'null'
            - string
          description: >-
            A URI reference identifying the problem type (RFC 7807). Null when
            no specific type is assigned.
        title:
          type:
            - 'null'
            - string
          description: A short, human-readable summary of the problem type.
        status:
          pattern: ^-?(?:0|[1-9]\d*)$
          type:
            - 'null'
            - integer
            - string
          description: >-
            The HTTP status code for this problem, duplicated in the body for
            convenience.
          format: int32
        detail:
          type:
            - 'null'
            - string
          description: >-
            A human-readable explanation specific to this occurrence of the
            problem.
        instance:
          type:
            - 'null'
            - string
          description: >-
            A URI reference identifying the specific occurrence of the problem
            (typically the request path).
  securitySchemes:
    ApiKey:
      type: apiKey
      description: API key generated in the Portal (Workspace Settings → API Keys).
      name: x-api-key
      in: header

````