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

# List pending Turnkey approval activities

> Returns pending customer-approval activities for the authenticated organization, joined with Ground wallet and withdrawal context. Activities already voted on by the requester may be omitted.

Returns pending customer-approval activities for the authenticated organization.


## OpenAPI

````yaml swagger/swagger-combined.yaml GET /v2/turnkey/activities/pending
openapi: 3.0.0
info:
  title: Ground API
  description: Core API for portfolio wallets, deposits, withdrawals, and webhooks.
  version: 2.0.0
servers:
  - url: https://sandbox.groundtech.co
  - url: https://production.groundtech.co
security:
  - bearerAuth: []
tags:
  - name: System
    description: System health and utility endpoints.
  - name: Sandbox Faucets
    description: Sandbox-only test token faucets.
  - name: Portfolio Wallets
    description: >-
      Portfolio wallets with strategy allocation, deposits, withdrawals, and
      yield positions.
  - name: Webhook Endpoints
    description: Webhook endpoint management for portfolio wallet notifications.
paths:
  /v2/turnkey/activities/pending:
    get:
      tags:
        - Turnkey Approvals
      summary: List pending Turnkey approval activities
      description: >-
        Returns pending customer-approval activities for the authenticated
        organization, joined with Ground wallet and withdrawal context.
        Activities already voted on by the requester may be omitted.
      operationId: listPendingTurnkeyActivities
      responses:
        '200':
          description: Pending Turnkey approval activities
          content:
            application/json:
              schema:
                type: object
                required:
                  - activities
                properties:
                  activities:
                    type: array
                    items:
                      type: object
                      properties:
                        turnkeyActivityId:
                          type: string
                        status:
                          type: string
                          example: ACTIVITY_STATUS_CONSENSUS_NEEDED
                        activityType:
                          type: string
                          example: ACTIVITY_TYPE_SIGN_TRANSACTION_V2
                        activityKind:
                          type: string
                          example: withdrawal_payout
                        activityMetadata:
                          type: object
                          additionalProperties: true
                        fingerprint:
                          type: string
                        firstSeenAt:
                          type: string
                          format: date-time
                        withdrawalLegId:
                          type: string
                          nullable: true
                        withdrawalId:
                          type: string
                          nullable: true
                        portfolioWalletId:
                          type: string
                          nullable: true
                        destinationChain:
                          type: string
                          nullable: true
                        destinationToken:
                          type: string
                          nullable: true
                        destinationAddress:
                          type: string
                          nullable: true
                        plannedSourceNativeUnits:
                          type: string
                          nullable: true
                        displayAmountNativeUnits:
                          type: string
                          nullable: true
                        txChain:
                          type: string
                          nullable: true
              example:
                activities:
                  - turnkeyActivityId: 018f4b7a-1111-7000-8000-000000000001
                    status: ACTIVITY_STATUS_CONSENSUS_NEEDED
                    activityType: ACTIVITY_TYPE_SIGN_TRANSACTION_V2
                    activityKind: withdrawal_payout
                    activityMetadata: {}
                    fingerprint: activity-fingerprint
                    firstSeenAt: '2026-06-24T12:00:00.000Z'
                    withdrawalLegId: 9b2f2a2b-0000-4000-8000-000000000001
                    withdrawalId: 8a1e1b1c-0000-4000-8000-000000000001
                    portfolioWalletId: 7d0c0d0e-0000-4000-8000-000000000001
                    destinationChain: base
                    destinationToken: usdc
                    destinationAddress: '0x52908400098527886E0F7030069857D2E4169EE7'
                    plannedSourceNativeUnits: '1000000'
                    displayAmountNativeUnits: '1000000'
                    txChain: base
        '401':
          $ref: '#/components/responses/Unauthorized'
        '429':
          $ref: '#/components/responses/TooManyRequests'
        '500':
          $ref: '#/components/responses/InternalServerError'
components:
  responses:
    Unauthorized:
      description: >-
        The request is missing a valid bearer token, or the token is invalid or
        expired.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/AuthErrorResponse'
          example:
            error: Unauthenticated request
            message: Missing or invalid bearer token
    TooManyRequests:
      description: >-
        Rate limit exceeded. Limits are enforced by API key/customer identity
        and by endpoint class. Retry with backoff; rate-limit headers are not
        currently emitted.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            error: Rate limit exceeded
            code: rate_limited
    InternalServerError:
      description: >-
        An unexpected error occurred while processing the request. The request
        can be safely retried with the same `requestId`.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            error: Internal server error
            code: internal_error
  schemas:
    AuthErrorResponse:
      type: object
      required:
        - error
      properties:
        error:
          type: string
          description: Authentication or authorization error message.
        message:
          type: string
          nullable: true
          description: Additional auth middleware detail, when present.
        code:
          type: string
          nullable: true
          enum:
            - unauthenticated
            - forbidden
          description: >-
            Some auth and scope failures include a stable code; middleware
            errors may omit it.
    ErrorResponse:
      type: object
      required:
        - error
        - code
      properties:
        error:
          type: string
          description: >-
            Human-readable error message. May change without notice; do not
            parse programmatically.
        code:
          type: string
          description: >-
            Machine-readable error code. Stable across API versions — safe to
            switch on in client code.
          enum:
            - validation_error
            - unknown_parameters
            - unsupported_chain
            - unsupported_token
            - invalid_destination_address
            - precision_overflow
            - invalid_cursor
            - unauthenticated
            - forbidden
            - wallet_not_found
            - wallet_limit_reached
            - withdrawal_not_found
            - deposit_not_found
            - yield_source_not_found
            - wallet_projection_unavailable
            - insufficient_funds
            - duplicate_request_id
            - request_id_conflict
            - invalid_position_weight
            - invalid_withdrawal_plan
            - payout_not_found
            - webhook_not_found
            - webhook_duplicate_url
            - withdrawal_not_cancellable
            - withdrawal_already_cancelled
            - withdrawal_payout_in_progress
            - withdrawal_policy_required
            - workflow_conflict
            - payout_already_terminal
            - payout_in_progress
            - payout_not_retryable
            - address_book_entry_not_found
            - address_book_duplicate_entry
            - address_book_whitelist_violation
            - rate_limited
            - rate_limit_exceeded
            - internal_error
            - wallet_creation_failed
            - service_temporarily_unavailable
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````