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

# Show Helping Hand payment status

> Return the current result for one Helping Hand payment attempt. Use the complete signed `status_url` returned by `POST /payment`; do not construct or modify this URL on the frontend.



## OpenAPI

````yaml /api/consumer.openapi.yaml get /payment/attempts/{attempt}
openapi: 3.1.0
info:
  title: YouNegotiate Consumer API
  version: '2.0'
  description: >-
    Stateless API endpoints for consumer portal authentication and account
    access.
servers:
  - url: https://api.consumer.younegotiate.com
    description: Production
security: []
tags:
  - name: System
    description: Public consumer domain system and health endpoints.
  - name: Authentication
    description: >-
      Consumer identity matching, contact capture, OTP verification, token
      creation, and logout endpoints.
  - name: Profile - My ecoAddress
    description: Consumer profile tab for signed-in identity / ecoAddress context.
  - name: Profile - Communication Controls
    description: >-
      Consumer profile tab for communication permissions, email/mobile changes,
      and email/mobile verification.
  - name: Profile - My Billing Details
    description: >-
      Consumer profile tab for billing name and billing address details used for
      payment verification.
  - name: Profile - Personalize My Portal
    description: Consumer profile tab for portal colors and profile image personalization.
  - name: Accounts
    description: Consumer-owned account list and account detail endpoints.
  - name: Bill Pay Wallet
    description: >-
      Consumer Bill Pay Wallet saved payment profiles and scheduled payment
      method update endpoints.
  - name: Upcoming Payments
    description: >-
      Consumer My Bill Pay Calendar upcoming-payment rows and calendar display
      data.
  - name: Calendar Sync
    description: >-
      Consumer Google and Microsoft calendar connection, OAuth callback, and
      live-update endpoints.
  - name: Gift Registry
    description: >-
      Consumer Bill Pay Gift Registry account list, shared registry, and Helping
      Hand link endpoints.
  - name: EcoMailbox
    description: Consumer MyEcoMailBox list endpoints and unread sidebar badge state.
  - name: Notice Responses
    description: >-
      Consumer My Account notice-response wizard endpoints for sender details
      and account details.
paths:
  /payment/attempts/{attempt}:
    get:
      tags:
        - Gift Registry
      summary: Show Helping Hand payment status
      description: >-
        Return the current result for one Helping Hand payment attempt. Use the
        complete signed `status_url` returned by `POST /payment`; do not
        construct or modify this URL on the frontend.
      operationId: consumerShowExternalPaymentAttempt
      parameters:
        - name: attempt
          in: path
          required: true
          description: External payment attempt UUID.
          schema:
            type: string
            format: uuid
        - name: expires
          in: query
          required: true
          schema:
            type: integer
        - name: signature
          in: query
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Payment attempt status returned.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ExternalPaymentAttemptResponse'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
        '429':
          $ref: '#/components/responses/TooManyRequests'
components:
  schemas:
    ExternalPaymentAttemptResponse:
      type: object
      required:
        - data
      properties:
        data:
          $ref: '#/components/schemas/ExternalPaymentAttemptData'
    ExternalPaymentAttemptData:
      type: object
      required:
        - attempt_id
        - status
        - retry_allowed
        - amount
        - remaining_balance
        - account_status
        - status_url
        - receipt
      properties:
        attempt_id:
          type: string
          format: uuid
        status:
          type: string
          enum:
            - processing
            - requires_review
            - successful
            - failed
        retry_allowed:
          type: boolean
          description: >-
            True only after an explicit failed terminal result. Never resubmit
            while processing or requires_review.
        amount:
          type: string
          example: '40.00'
        remaining_balance:
          type:
            - string
            - 'null'
          example: '60.00'
        account_status:
          type:
            - string
            - 'null'
          example: payment_accepted
        status_url:
          type: string
          format: uri
        receipt:
          type: object
          required:
            - available
            - download_url
            - filename
          properties:
            available:
              type: boolean
            download_url:
              type:
                - string
                - 'null'
              format: uri
            filename:
              type: string
              example: debt_free_americans_receipt.pdf
    MessageResponse:
      type: object
      required:
        - message
      properties:
        message:
          type: string
  responses:
    Forbidden:
      description: Authenticated consumer cannot access the resource.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/MessageResponse'
    NotFound:
      description: Resource not found.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/MessageResponse'
    TooManyRequests:
      description: Request was rate limited.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/MessageResponse'

````