Lucas Segers
05/23/2024, 5:41 PMkapa.ai
05/23/2024, 5:42 PMLucas Segers
05/23/2024, 5:47 PMkapa.ai
05/23/2024, 5:47 PMrequest_body_json field, you can use variables like next_page_token, stream_interval, stream_partition, stream_slice, and stream_state. These variables can be used to dynamically adjust the request body based on certain conditions. Here's an example from the [documentation](https://docs.airbyte.com/connector-development/config-based/understanding-the-yaml-file/reference#/definitions/HttpRequester): yaml request_body_json: sort_order: "ASC" sort_field: "CREATED_AT" In this example, the sort_order and sort_field are static values, but you could replace them with variables to make the request body dynamic. However, please note that this doesn't provide a way to use conditional logic (like if-else statements) directly within the request body. If you need more complex logic, you might need to handle that in your code before generating the request body. For more complex scenarios or for further assistance, I would recommend checking the [Airbyte documentation](https://docs.airbyte.com/) or reaching out to the Airbyte community on their [Github page](https://github.com/airbytehq/airbyte).