Skip to content

Commit 798440a

Browse files
committed
finished
1 parent e10ab76 commit 798440a

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

apps/docs/content/docs/en/tools/sap_concur.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -735,7 +735,7 @@ Get a cash advance (GET /cashadvance/v4/cashadvances/{cashadvanceId}).
735735

736736
### `sap_concur_upload_exchange_rates`
737737

738-
Bulk upload up to 100 custom exchange rates (POST /exchangerate/v4/rates). Body: { currency_sets: [{ from_crn_code, to_crn_code, start_date:
738+
Bulk upload up to 100 custom exchange rates (POST /exchangerate/v4/rates). Body contains a currency_sets array, each with from_crn_code, to_crn_code, start_date (YYYY-MM-DD), and rate.
739739

740740
#### Input
741741

apps/sim/app/(landing)/integrations/data/integrations.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11749,8 +11749,8 @@
1174911749
"description": "List budget categories (GET /budget/v4/budgetCategory)."
1175011750
},
1175111751
{
11752-
"name": "Get Exchange Rate",
11753-
"description": "Bulk upload up to 100 custom exchange rates (POST /exchangerate/v4/rates). Body: { currency_sets: [{ from_crn_code, to_crn_code, start_date: "
11752+
"name": "Upload Exchange Rates",
11753+
"description": "Bulk upload up to 100 custom exchange rates (POST /exchangerate/v4/rates). Body contains a currency_sets array, each with from_crn_code, to_crn_code, start_date (YYYY-MM-DD), and rate."
1175411754
},
1175511755
{
1175611756
"name": "Create Purchase Request",

apps/sim/tools/sap_concur/upload_exchange_rates.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export const uploadExchangeRatesTool: ToolConfig<
1313
id: 'sap_concur_upload_exchange_rates',
1414
name: 'SAP Concur Upload Exchange Rates',
1515
description:
16-
'Bulk upload up to 100 custom exchange rates (POST /exchangerate/v4/rates). Body: { currency_sets: [{ from_crn_code, to_crn_code, start_date: "YYYY-MM-DD", rate }] }',
16+
'Bulk upload up to 100 custom exchange rates (POST /exchangerate/v4/rates). Body contains a currency_sets array, each with from_crn_code, to_crn_code, start_date (YYYY-MM-DD), and rate.',
1717
version: '1.0.0',
1818
params: {
1919
datacenter: {

0 commit comments

Comments
 (0)