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

# Beneficiary details



## OpenAPI

````yaml /api-reference/partners/api.json get /v1/beneficiaries/{id}
openapi: 3.1.0
info:
  title: Laravel
  version: 0.0.1
servers:
  - url: https://api.opx.co/partners
    description: Production
security: []
paths:
  /v1/beneficiaries/{id}:
    get:
      tags:
        - Beneficiaries
      summary: Beneficiary details
      operationId: partners.beneficiaries.show
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: integer
      responses:
        '200':
          description: '`BeneficiaryResource`'
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/BeneficiaryResource'
                required:
                  - data
components:
  schemas:
    BeneficiaryResource:
      type: object
      properties:
        id:
          type: integer
        firstname:
          type: string
        lastname:
          type: string
        company_name:
          type: string
        siren:
          type: string
        siret:
          type: string
        address:
          type: string
        city:
          type: string
        zipcode:
          type: string
        country:
          type: string
        mobile_phone:
          type: string
        phone:
          type: string
        email:
          type: string
      required:
        - id
        - firstname
        - lastname
        - company_name
        - siren
        - siret
        - address
        - city
        - zipcode
        - country
        - mobile_phone
        - phone
        - email
      title: BeneficiaryResource

````