{
  "info": {
    "name": "Fidel API — mcp.ai",
    "description": "REST API for the Fidel API MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/fidel_api",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "fidel_api_create_brand",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/brand",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "brand"
          ]
        },
        "description": "Create a new brand in Fidel API. Use this action to register a brand with a unique name. Brands are independent of Programs and can be reused between different programs. Once created, the brand can be",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"logoURL\": \"\",\n  \"metadata\": {},\n  \"websiteURL\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fidel_api_create_brand_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/brand/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "brand",
            "webhook"
          ]
        },
        "description": "Tool to create a webhook at the brand level for receiving real-time event notifications. Use when you need to be notified of brand-related events, such as when brand consent is approved. In test mode,",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"event\": \"\",\n  \"headers\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fidel_api_create_location",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/location",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "location"
          ]
        },
        "description": "Create a new location for a program in Fidel API. Use when you need to add a physical store or merchant location to track card transactions at that specific address.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"city\": \"\",\n  \"address\": \"\",\n  \"brandId\": \"\",\n  \"postcode\": \"\",\n  \"searchBy\": {},\n  \"programId\": \"\",\n  \"stateCode\": \"\",\n  \"countryCode\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fidel_api_create_mid_request",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/mid/request",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "mid",
            "request"
          ]
        },
        "description": "Tool to create a new MID (Merchant ID) request for a specific program and location. Use when you need to onboard a new MID or reassign an existing MID to a location.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"vmid\": \"\",\n  \"action\": \"\",\n  \"origin\": \"\",\n  \"scheme\": \"\",\n  \"programId\": \"\",\n  \"locationId\": \"\",\n  \"mcAcquiringMid\": \"\",\n  \"visaAcquiringMid\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fidel_api_create_offer",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/offer",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "offer"
          ]
        },
        "description": "Create a new offer in Fidel API. Use this to set up promotional offers with reward configurations (fixed amount or percentage discount) for specific brands and countries. The offer will be associated ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"type\": {},\n  \"brandId\": \"\",\n  \"endDate\": \"\",\n  \"startDate\": \"\",\n  \"activation\": {},\n  \"countryCode\": \"\",\n  \"publisherId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fidel_api_create_program",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/program",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "program"
          ]
        },
        "description": "Creates a new card-linked loyalty program in Fidel. A Program is the parent object for tracking card transactions - all Cards, Locations, Webhooks, and Transactions are linked to a Program. Use this b",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"icon\": \"\",\n  \"name\": \"\",\n  \"metadata\": {},\n  \"iconBackground\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fidel_api_create_program_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/program/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "program",
            "webhook"
          ]
        },
        "description": "Tool to register a new webhook for program-related events. Use when you need to receive real-time notifications for specific program events in your application.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"event\": \"\",\n  \"programId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fidel_api_delete_location",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/location",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "location"
          ]
        },
        "description": "Tool to delete a location by its ID. Use after confirming the correct location ID. The operation is idempotent - deleting an already-deleted location returns success.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"locationId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fidel_api_delete_offer",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/offer",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "offer"
          ]
        },
        "description": "Tool to delete a specified offer by its ID. Use after confirming the correct offer ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"offerId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fidel_api_delete_program_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/program/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "program",
            "webhook"
          ]
        },
        "description": "Permanently deletes a webhook by its ID. This is a destructive operation that cannot be undone. The webhook will immediately stop receiving event notifications. Use List Program Webhooks first to get ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"hookId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fidel_api_get_brand",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/brand",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "brand"
          ]
        },
        "description": "Tool to retrieve information about a specific brand. Use when you have a brand ID and need its details.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"brandId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fidel_api_get_location",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/location",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "location"
          ]
        },
        "description": "Tool to retrieve details of a specific location by its ID. Use when you have a location ID and need its full details.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"locationId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fidel_api_get_mid",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/mid",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "mid"
          ]
        },
        "description": "Tool to retrieve details of a specific MID (Merchant ID). Use when you have a program ID and MID ID to get full MID details.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"midId\": \"\",\n  \"programId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fidel_api_get_mid_request",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/mid/request",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "mid",
            "request"
          ]
        },
        "description": "Tool to retrieve details of a specific MID request. Use when you have a program ID and MID request ID and need to check the status or details of a Merchant ID request.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"programId\": \"\",\n  \"midRequestId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fidel_api_get_offer",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/offer",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "offer"
          ]
        },
        "description": "Retrieves detailed information about a specific offer by its unique ID. Use this tool when you need to: - Get full details about a known offer (reward type, value, dates, etc.) - Verify offer status (",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"offerId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fidel_api_get_program",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/program",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "program"
          ]
        },
        "description": "Tool to retrieve details of a specific program. Use when you have a program ID and need its full details.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"programId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fidel_api_get_transaction",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/transaction",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "transaction"
          ]
        },
        "description": "Tool to retrieve details of a specific transaction by its ID. Use when you need to get complete information about a card-linked transaction including amount, currency, timestamp, and associated metada",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"transactionId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fidel_api_get_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "webhook"
          ]
        },
        "description": "Retrieve details of a specific webhook by its unique identifier. Use this tool when you need to inspect webhook configuration, verify its URL, check the subscribed event type, or obtain the secret key",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"hookId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fidel_api_link_all_program_locations_to_offer",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/link/all/program/locations/to/offer",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "link",
            "all",
            "program",
            "locations",
            "to",
            "offer"
          ]
        },
        "description": "Tool to link all brand locations in a program to an offer. Use when you need to associate all locations from a specific program with an offer, making the offer available at all those brand locations.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"offerId\": \"\",\n  \"programId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fidel_api_link_location_to_offer",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/link/location/to/offer",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "link",
            "location",
            "to",
            "offer"
          ]
        },
        "description": "Link a location to an offer in Fidel API. Use this action to associate a specific location with an offer, making the offer available at that location. Once linked, transactions at the location will be",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"offerId\": \"\",\n  \"locationId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fidel_api_list_brands",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/brands",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "brands"
          ]
        },
        "description": "Retrieves a paginated list of all brands associated with your Fidel API account. Use this tool to: - Get an overview of all brands in your account - Retrieve brand IDs for use in other operations (e.g",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"startingAfter\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fidel_api_list_cards",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/cards",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "cards"
          ]
        },
        "description": "List all payment cards linked to a Fidel program. Returns card details including scheme (visa/mastercard/amex), last 4 digits, expiry date, and country. Use this to view which cards are enrolled in a ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"start\": \"\",\n  \"programId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fidel_api_list_cards_by_metadata",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/cards/by/metadata",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "cards",
            "by",
            "metadata"
          ]
        },
        "description": "Tool to list payment cards filtered by metadata ID. Use when you need to retrieve all cards that share a specific metadata identifier. Returns card details including scheme, last 4 digits, expiry date",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"start\": \"\",\n  \"metadataId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fidel_api_list_cards_with_active_offer",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/cards/with/active/offer",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "cards",
            "with",
            "active",
            "offer"
          ]
        },
        "description": "List all payment cards that have activated a specific offer. Returns card details for cards enrolled in the offer, including activation status and timestamps. Use this to track which cards are partici",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"order\": \"\",\n  \"start\": \"\",\n  \"offerId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fidel_api_list_locations",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/locations",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "locations"
          ]
        },
        "description": "Tool to list all locations for a program. Use when you need to retrieve paginated store locations within a specific program.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"count\": 0,\n  \"limit\": 0,\n  \"search\": \"\",\n  \"programId\": \"\",\n  \"countryCode\": \"\",\n  \"endingBefore\": \"\",\n  \"startingAfter\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fidel_api_list_locations_by_brand",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/locations/by/brand",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "locations",
            "by",
            "brand"
          ]
        },
        "description": "Tool to list all locations for a specific brand within a program. Use when you need to retrieve locations filtered by both brand and program IDs with optional pagination, status, and postcode filters.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"order\": \"\",\n  \"start\": \"\",\n  \"status\": \"\",\n  \"brandId\": \"\",\n  \"postcode\": \"\",\n  \"programId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fidel_api_list_locations_by_offer",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/locations/by/offer",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "locations",
            "by",
            "offer"
          ]
        },
        "description": "Tool to list all locations linked to a specific offer. Use when you need to retrieve locations where an offer is valid or active.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"order\": \"\",\n  \"start\": \"\",\n  \"offerId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fidel_api_list_mid_requests",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/mid/requests",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "mid",
            "requests"
          ]
        },
        "description": "List all MID (Merchant ID) requests for a specific program. Use when you need to retrieve MID requests associated with a program for card-linking operations. Supports pagination via the 'start' parame",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"order\": \"\",\n  \"start\": \"\",\n  \"programId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fidel_api_list_mids",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/mids",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "mids"
          ]
        },
        "description": "Tool to list all MIDs (Merchant IDs) for a program. Use when you need to retrieve merchant IDs associated with a specific program for transaction tracking or location management.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"programId\": \"\",\n  \"startingAfter\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fidel_api_list_missing_transaction_requests",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/missing/transaction/requests",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "missing",
            "transaction",
            "requests"
          ]
        },
        "description": "Tool to list all missing transaction requests for a specific program. Use when you need to retrieve reports of transactions that were expected but not recorded in the system.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"order\": \"\",\n  \"start\": \"\",\n  \"programId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fidel_api_list_offers",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/offers",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "offers"
          ]
        },
        "description": "List all offers in the Fidel API. Retrieves offers associated with the account, optionally filtered by brand. Returns offer details including type (amount/discount), validity period, card schemes, and",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"order\": \"\",\n  \"start\": \"\",\n  \"brandId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fidel_api_list_program_webhooks",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/program/webhooks",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "program",
            "webhooks"
          ]
        },
        "description": "Tool to list all registered webhooks for a specific program. Use when you need to retrieve existing webhooks after confirming the programId.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"programId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fidel_api_list_programs",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/programs",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "programs"
          ]
        },
        "description": "List all Fidel programs in your account. Use this to retrieve programs for card-linking, loyalty, or reward systems. Supports pagination via the 'start' parameter using cursors from previous responses",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"order\": \"\",\n  \"start\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fidel_api_list_transactions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/transactions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "transactions"
          ]
        },
        "description": "List transactions for a Fidel program with optional filtering and pagination. Use this tool to retrieve card-linked transaction data for loyalty, rewards, or analytics purposes. Requires a valid progr",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"order\": \"\",\n  \"start\": \"\",\n  \"offset\": 0,\n  \"programId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fidel_api_unlink_location_from_offer",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/unlink/location/from/offer",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "unlink",
            "location",
            "from",
            "offer"
          ]
        },
        "description": "Tool to unlink a location from an offer by removing the location association. Use after confirming the correct offer ID and location ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"offerId\": \"\",\n  \"locationId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fidel_api_update_brand",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/brand",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "brand"
          ]
        },
        "description": "Update an existing brand's details in Fidel API. Use this to modify websiteURL, logoURL, or metadata for a brand. The brand name cannot be changed after creation. Requires a valid brand ID from get_br",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"brandId\": \"\",\n  \"logoURL\": \"\",\n  \"metadata\": {},\n  \"websiteURL\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fidel_api_update_offer",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/offer",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "offer"
          ]
        },
        "description": "Updates specific properties of an existing offer. Use this when you need to modify offer details such as name, dates, transaction amounts, terms, or metadata. At least one field must be provided to up",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"endDate\": \"\",\n  \"offerId\": \"\",\n  \"metadata\": {},\n  \"startDate\": \"\",\n  \"daysOfWeek\": \"\",\n  \"returnPeriod\": 0,\n  \"additionalTerms\": \"\",\n  \"maxTransactionAmount\": 0,\n  \"minTransactionAmount\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fidel_api_update_program",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/program",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "program"
          ]
        },
        "description": "Updates a Fidel API program's properties. Can modify name (4-50 chars), icon (emoji in :name: format), iconBackground (HEX color), metadata (key/value pairs, max 2KB), or status ('syncing' for live pr",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"icon\": \"\",\n  \"name\": \"\",\n  \"status\": \"\",\n  \"metadata\": {},\n  \"programId\": \"\",\n  \"iconBackground\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fidel_api_update_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "webhook"
          ]
        },
        "description": "Tool to update an existing webhook's configuration. Use when you need to change the webhook URL or event type. The event field is required even when updating.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"event\": \"\",\n  \"hookId\": \"\",\n  \"programId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}