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

# Find All Beneficiary

> Retrieves a list of all saved beneficiaries associated with the authenticated customer or managed by the agent.

This endpoint fetches all saved recipient profiles (**beneficiaries**) linked to the authenticated user's account. This list is typically displayed when a user initiates a new transaction to select a pre-saved recipient.

## Request Headers

This endpoint requires a valid **Access Token** for authorization to identify the user and their associated beneficiaries.

<ParamField header="X-Auth-Token" type="string" required>
  The **JWT Access Token** obtained from the `/login` or `/refresh-token`
  endpoint.
</ParamField>

<ParamField header="platform" type="string" required default="fincode">
        Platform identifier. Use `fincode`.
</ParamField>

<ParamField header="uuid" type="string" required default="200">
        Unique request identifier.
</ParamField>

## Code Examples

<CodeGroup>
  ```bash cURL theme={null}
  curl --location 'https://remitjunction.fincode.software/api/v6/services/usermanagement/find-all-beneficiery' \
  --header 'X-Auth-Token: YOUR_JWT_ACCESS_TOKEN' \
  --header 'platform: fincode' \
  --header 'uuid: 200'
  ```

  ```javascript Node.js theme={null}
  const axios = require('axios');

  const BASE_URL =
    'https://remitjunction.fincode.software/api/v6/services/usermanagement';

  async function findAllBeneficiaries(accessToken) {
    try {
      const response = await axios.get(`${BASE_URL}/find-all-beneficiery`, {
        headers: {
          'X-Auth-Token': accessToken,
          platform: 'fincode',
          uuid: '200',
        },
      });

      const beneficiaries = response.data.data;

      console.log(`Beneficiaries Found: ${beneficiaries.length}`);
      beneficiaries.forEach((b) => {
        console.log(`- ${b.name} (${b.country}) - Account: ${b.accountNumber}`);
      });

      return beneficiaries;
    } catch (error) {
      console.error(
        'Failed to fetch beneficiaries:',
        error.response?.data || error.message
      );
      throw error;
    }
  }

  ```
</CodeGroup>


## OpenAPI

````yaml GET /usermanagement/find-all-beneficiery
openapi: 3.0.0
info:
  title: FinCode API
  version: v6
servers:
  - url: https://{tenant}.fincode.software/api/v6/services
    description: API v6
    variables:
      tenant:
        default: remitjunction
        description: Enter your tenant subdomain
  - url: https://{tenant}.fincode.software/api/v1/services
    description: API v1
    variables:
      tenant:
        default: finlend
        description: Enter your tenant subdomain
  - url: https://api.stag.songhaiexchange.io
    description: Songhai Exchange API
security: []
paths:
  /usermanagement/find-all-beneficiery:
    get:
      summary: Find All Beneficiary
      description: Retrieves user beneficiaries
      operationId: findAllBeneficiaries
      parameters:
        - $ref: '#/components/parameters/platformHeader'
        - $ref: '#/components/parameters/uuidHeader'
        - in: header
          name: X-Auth-Token
          schema:
            type: string
          required: true
      responses:
        '200':
          description: List of beneficiaries
components:
  parameters:
    platformHeader:
      in: header
      name: platform
      schema:
        type: string
        default: fincode
      required: true
    uuidHeader:
      in: header
      name: uuid
      schema:
        type: string
        default: '200'
      required: true

````