From d7c8bf50bf82fba335098e8acf952f8c09e28e75 Mon Sep 17 00:00:00 2001 From: Matt Raible Date: Tue, 15 Oct 2024 14:19:11 -0600 Subject: [PATCH] Update API integration example to have definitionId --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 080ca92..58e23b1 100644 --- a/README.md +++ b/README.md @@ -115,6 +115,7 @@ To call API Integration, App should be initially provisioned, and configuration // we assume, that API Integration was created and operation Get Cities exists const apiIntegration = falcon.apiIntegration({ + definitionId: '', operationId: 'Get Cities', }); @@ -128,6 +129,7 @@ To call API Integration, App should be initially provisioned, and configuration } }); // response.resources?.[0]?.status_code === 200 + // date is at response.resources[0].response_body }); ```