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

# Get Worker Reimbursement

> Returns a single reimbursement record for a worker.



## OpenAPI

````yaml api-reference/v01.12.00/openapi-v01.12.00.json GET /workers/{id}/reimbursements/{reimbursement_id}
openapi: 3.0.0
info:
  title: Roosted
  version: 0.1.12
  contact:
    name: Support
    url: https://support.roostedhr.com/support/home
    email: support@roostedhr.com
  description: |-
    Enterprise API

    Sandbox keys and Production keys are requested from support
servers:
  - url: https://api.roostedhr.com/api/1_12
  - url: https://sandbox.roostedhr.com/api/1_12
security:
  - X-API-KEY: []
tags:
  - name: Announcements
  - name: Areas
  - name: Clients
  - name: Company
  - name: Configuration
  - name: Events
  - name: Locations
  - name: Payroll Groups
  - name: Rate Cards
  - name: Shifts
  - name: Skillsets
  - name: Time Tracking
  - name: Wage Rules
  - name: Workers
paths:
  /workers/{id}/reimbursements/{reimbursement_id}:
    parameters:
      - schema:
          type: string
        name: id
        in: path
        required: true
        description: Worker ID
      - schema:
          type: string
        name: reimbursement_id
        in: path
        required: true
        description: Reimbursement ID
    get:
      tags:
        - Workers
      summary: Get Worker Reimbursement
      description: Returns a single reimbursement record for a worker.
      operationId: get-worker-reimbursement
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WorkerReimbursement'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: string
                    description: Machine-readable error code.
                  error:
                    type: string
                    description: Human-readable error message.
              examples:
                Invalid page parameter:
                  value:
                    code: WRK-2400
                    error: Invalid page parameter
                Invalid items per page parameter:
                  value:
                    code: WRK-2400
                    error: Invalid items per page parameter
                Invalid date range filter:
                  value:
                    code: WRK-2400
                    error: Invalid date range filter
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: string
                    description: Machine-readable error code.
                  error:
                    type: string
                    description: Human-readable error message.
              examples:
                Invalid or missing API key:
                  value:
                    code: ATH-100
                    error: Invalid or missing API key
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: string
                    description: Machine-readable error code.
                  error:
                    type: string
                    description: Human-readable error message.
              examples:
                Insufficient permissions to manage worker reimbursements:
                  value:
                    code: WRK-2100
                    error: Insufficient permissions to manage worker reimbursements
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: string
                    description: Machine-readable error code.
                  error:
                    type: string
                    description: Human-readable error message.
              examples:
                Worker not found:
                  value:
                    code: WRK-300
                    error: Worker not found
                Reimbursement not found:
                  value:
                    code: WRK-2300
                    error: Reimbursement not found
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: string
                    description: Machine-readable error code.
                  error:
                    type: string
                    description: Human-readable error message.
              examples:
                An unexpected error occurred:
                  value:
                    code: WRK-2200
                    error: An unexpected error occurred
components:
  schemas:
    WorkerReimbursement:
      title: WorkerReimbursement
      type: object
      description: >-
        A reimbursement record for a worker, including type details and
        processing status.
      properties:
        id:
          type: string
          description: Reimbursement ID.
          example: 5EJ5U
        personnel_id:
          type: string
          description: Worker ID.
          example: '3158'
        events_roles_filled_id:
          type: string
          nullable: true
          description: Associated shift assignment ID.
          example: null
        reimbursement_date:
          type: string
          description: Date of the reimbursement.
          example: '2026-03-17'
        amount:
          type: string
          description: Reimbursement amount.
          example: '11.00'
        picture_location:
          type: string
          nullable: true
          description: URL of the attached receipt image.
          example: null
        comments:
          type: string
          description: Reimbursement comments.
          example: ''
        manager_id:
          type: string
          description: ID of the manager who processed the reimbursement.
          example: '3158'
        status:
          type: string
          description: >-
            Reimbursement status. `0` = pending, `2` = approved, `86` =
            rejected.
          example: '0'
        deleted:
          type: string
          description: Whether the reimbursement is deleted. `0` = active, `1` = deleted.
          example: '0'
        insert_date:
          type: string
          description: Creation datetime.
          example: '2026-03-19 22:46:34'
        edit_date:
          type: string
          description: Last modification datetime.
          example: '2026-03-19 22:46:51'
        action_date:
          type: string
          nullable: true
          description: Datetime when the reimbursement was approved or rejected.
          example: '2026-03-19 22:46:34'
        delete_date:
          type: string
          nullable: true
          description: Deletion datetime.
          example: null
        source:
          type: string
          description: Source of the reimbursement submission.
          example: Admin
        mileage:
          type: string
          description: Whether this is a mileage reimbursement. `0` = no, `1` = yes.
          example: '0'
        kilometers:
          type: string
          description: Whether mileage is tracked in kilometers. `0` = no, `1` = yes.
          example: '0'
        reimbursements_types_id:
          type: integer
          nullable: true
          description: ID of the reimbursement type, if assigned.
          example: null
        manager_name:
          type: string
          description: Full name of the processing manager.
          example: Chris Davis
        name:
          type: string
          nullable: true
          description: Reimbursement type name.
          example: null
        prefix:
          type: string
          nullable: true
          description: Reimbursement type display prefix.
          example: null
        suffix:
          type: string
          nullable: true
          description: Reimbursement type display suffix.
          example: null
        export_value:
          type: string
          nullable: true
          description: Reimbursement type export value for payroll integration.
          example: null
        picture_required:
          type: integer
          nullable: true
          description: Whether a receipt photo is required for this type (worker).
          example: null
        picture_required_for_admin:
          type: integer
          nullable: true
          description: Whether a receipt photo is required for this type (admin).
          example: null
        insert_date_nice:
          type: string
          description: Human-readable creation date.
          example: Thursday March 19th
        reimbursement_date_nice:
          type: string
          description: Human-readable reimbursement date.
          example: Tuesday March 17th
        edit_date_nice:
          type: string
          description: Human-readable last modification date.
          example: Thursday March 19th
        action_date_nice:
          type: string
          nullable: true
          description: Human-readable approval/rejection date.
          example: Thursday March 19th
  securitySchemes:
    X-API-KEY:
      name: X-API-KEY
      type: apiKey
      in: header

````