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

# Delete Payee Address

> Delete an address associated with a payee.

This endpoint allows you to:
- Remove outdated or invalid location records
- Maintain clean beneficiary records
- Prevent incorrect billing or fulfillment usage
- Promote another address as default if required

If the deleted address was marked as default, another saved address may automatically be promoted.



## OpenAPI

````yaml DELETE /api/user-api/address/payee/delete
openapi: 3.1.0
info:
  title: paywint
  version: 0.1.0
servers:
  - url: https://api.sandbox.paywint.com
  - url: https://api.paywint.com
security: []
paths:
  /api/user-api/address/payee/delete:
    delete:
      tags:
        - Developer API Address
      summary: Delete Payee Address
      description: >-
        Delete an address associated with a payee.


        This endpoint allows you to:

        - Remove outdated or invalid location records

        - Maintain clean beneficiary records

        - Prevent incorrect billing or fulfillment usage

        - Promote another address as default if required


        If the deleted address was marked as default, another saved address may
        automatically be promoted.
      operationId: delete_payee_address_api_user_api_address_payee_delete_delete
      parameters:
        - name: X-Api-Key
          in: header
          required: true
          schema:
            type: string
            description: >-
              Your API Key (UUID format). Required to identify and authorize
              each request
            title: X-Api-Key
          description: >-
            Your API Key (UUID format). Required to identify and authorize each
            request
        - name: X-Api-Secret
          in: header
          required: true
          schema:
            type: string
            description: >-
              Secret associated with your API Key. Used for authenticating
              requests. Keep this secure.
            title: X-Api-Secret
          description: >-
            Secret associated with your API Key. Used for authenticating
            requests. Keep this secure.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UserApiContactAddressDelete'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CommonResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    UserApiContactAddressDelete:
      properties:
        payee_id:
          type: string
          format: uuid4
          title: Payee Id
          description: Unique identifier for the payee whose addresses are being managed.
          example: f47ac10b-****-****-****-0e02b2c3d479
        address_id:
          type: string
          format: uuid4
          title: Address Id
          description: Unique identifier for the payee address record.
          example: 2d8c5ca1-98cb-42f7-8c1e-70a2b0b8e8f1
        new_default_address_id:
          anyOf:
            - type: string
              format: uuid4
            - type: 'null'
          title: New Default Address Id
          description: >-
            Optional address_id to mark as default if the requested address was
            defaulted.
      type: object
      required:
        - payee_id
        - address_id
      title: UserApiContactAddressDelete
    CommonResponse:
      properties:
        success:
          type: boolean
          title: Success
          description: Indicates whether the request was processed successfully.
          default: true
          example: true
        message:
          type: string
          title: Message
          description: >-
            A short, human-readable message describing the result of the
            request.
          default: Success
          example: Operation completed.
        data:
          anyOf:
            - {}
            - type: 'null'
          title: Data
          description: The main response payload, if applicable
        queryGeneratedTime:
          anyOf:
            - type: number
            - type: 'null'
          title: Querygeneratedtime
          description: >-
            The Unix timestamp (in seconds) indicating when the response was
            generated.
          default: 1778161546.973489
          example: 1718006400
      type: object
      title: CommonResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````