Hi! I'm using the python CDK for HTTP API. Once I ...
# ask-community-for-troubleshooting
p
Hi! I'm using the python CDK for HTTP API. Once I call the API the response I get is that the token should be on the Header . I can't find any documentation on how to send a header parameter . Appreciate any guidance
a
I show how to modify the authentication header in this tutorial https://airbyte.com/tutorials/extract-data-from-the-webflow-api
p
Thank you Alex. I'll go through this tutorial
Alex this was very helpful. Took me a while to change the authenticator to fit my needs since The API I'm reading uses another header.
Now I'm having a problem that I want to think is a simple fix in how I write my json schema. All the data is loading in a single row see attached image
Imagen de iOS.jpg
a
That is expected. Airbyte first writes the “raw” json to the destination. Then, depending on the destination Airbyte will “normalize” the data to extract the columns from that json — this is done by Airbyte calling SQL commands that run on the database/data warehouse. This is how the ELT (not ETL) paradigm works.
p
Thank you Alex! That makes sense. Then something is going on with the normalization process. I am creating a nested json schema. By any chanse would you have an example of a nested json schema sample file I could use to see if I am doing something wrong in my nesting ?