Skip to content

Commit d57a847

Browse files
Update src/content/docs/integrate/third-party-tools/trustpath-fraud-protection.mdx
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
1 parent e80e54e commit d57a847

File tree

1 file changed

+11
-13
lines changed

1 file changed

+11
-13
lines changed

src/content/docs/integrate/third-party-tools/trustpath-fraud-protection.mdx

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -173,19 +173,17 @@ Once the connection is set up between APIs, data is ready to be sent to TrustPat
173173

174174
```css
175175
const response = await kinde.fetch(
176-
"https://api.trustpath.io/v1/risk/evaluate",
177-
178-
{
179-
method: "POST",
180-
responseFormat: "json",
181-
headers: {
182-
Authorization: `Bearer ${trustPathAPIKey}`,
183-
"Content-Type": "application/json",
184-
185-
},
186-
187-
body: JSON.stringify(requestBody),
188-
};
176+
"https://api.trustpath.io/v1/risk/evaluate",
177+
{
178+
method: "POST",
179+
responseFormat: "json",
180+
headers: {
181+
Authorization: `Bearer ${trustPathAPIKey}`,
182+
"Content-Type": "application/json",
183+
},
184+
body: JSON.stringify(requestBody),
185+
}
186+
);
189187
```
190188

191189
This request is made using `kinde.fetch`, which handles outbound API calls securely within the workflow context.

0 commit comments

Comments
 (0)