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

# Get Fee Setting

> Get fee setting for specific transaction and party type

# Get Fee Setting

Retrieve configured fee settings for a specific transaction type and party combination.

## Endpoint

```http theme={null}
GET /api/v1/fee-settings/:transaction_type/:party_type
```

## Authentication

<ParamField header="Authorization" type="string" required>
  Bearer token (Admin JWT)
</ParamField>

## Path Parameters

<ParamField path="transaction_type" type="string" required>
  Transaction type: `transfer_p2p`, `agent_cashin`, `pos_payment`, `vult_fund`, etc.
</ParamField>

<ParamField path="party_type" type="string" required>
  Party type: `sender`, `recipient`, `agent`, `processor`
</ParamField>

## Response

```json theme={null}
{
  "settings": {
    "id": 1,
    "transaction_type": "transfer_p2p",
    "party_type": "sender",
    "fee_type": "percentage",
    "fee_value": 1.5,
    "debit_enabled": true,
    "credit_enabled": false,
    "updated_at": "2025-01-15T10:30:00Z",
    "updated_by": "admin"
  }
}
```

## Errors

| Code | Description                             |
| ---- | --------------------------------------- |
| 404  | Fee settings not found (using defaults) |
| 401  | Unauthorized                            |
| 500  | Internal server error                   |


## OpenAPI

````yaml olive-openapi.json GET /fee-settings/{transaction_type}/{party_type}
openapi: 3.0.0
info:
  description: >-
    API Gateway for OLIVE NFC Card Payment System - Comprehensive payment, card
    management, agent operations, and admin authentication. All /api/v1 routes
    require authentication using either API Key or JWT token.
  title: OLIVE NFC Card Payment API
  termsOfService: http://swagger.io/terms/
  contact:
    name: API Support
    email: support@olive.sl
  license:
    name: Apache 2.0
    url: http://www.apache.org/licenses/LICENSE-2.0.html
  version: 1.0.0
servers:
  - url: https://olive-gateway-a6ba.onrender.com/api/v1
security: []
paths:
  /fee-settings/{transaction_type}/{party_type}:
    get:
      tags:
        - Fee Settings
      summary: Get fee settings for specific transaction and party
      description: Get configured fee settings for a specific combination
      parameters:
        - description: Transaction Type
          name: transaction_type
          in: path
          required: true
          schema:
            type: string
        - description: Party Type
          name: party_type
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
      security:
        - ApiKeyAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      description: >-
        API Key for third-party integrations (WhatsApp, Smart PAY, VULT).
        Format: 'Bearer olive_live_xxxxxxxxxxxxx'
      type: apiKey
      name: Authorization
      in: header

````