How to integrate third party API with workflow

i am using the workflow http request function in which i receive request body if i enclose in the array e.g [{“lead”: record.recordID}]
but the third party which i am integrating accept in the format {“lead”: record.recordID}
but corteza api block not able to send this it shares null

also i do not want to send through integration gateway … any help

import requests

url = “https://api.example.com/data
headers = {
“Authorization”: “Bearer YOUR_API_KEY”,
“Content-Type”: “application/json”
}
response = requests.get(url, headers=headers)
print(response.json())

Read API Docs: Understand endpoints, methods, and authentication.

Get API Key: Register and obtain necessary credentials.

Use HTTP Requests: Send GET/POST requests using tools like Fetch, Axios, or Python’s requests.

Handle Responses: Process returned data and manage errors.

Automate Workflow: Use the API to trigger tasks or update systems.

Maintain: Monitor usage and update when API changes.

What exactly are you trying to send? Would it be possible to see your workflow or at least the HTTP step and the steps which prepare the payload?