Skip to main content

Complex Objects Support in HTTP Header Parameters

· 2 min read

The SDKs now support passing complex objects, including non-scalar types and collections, as HTTP header parameters in the request.

Benefits

This update brings

  • Enhanced Flexibility: Seamlessly send structured data in headers.
  • Improved API Compatibility: Supports APIs that require complex header values.
  • Simplified Implementation: Eliminates the need for manual serialization.

How It Works

The following code samples demonstrate how to pass complex objects as header parameters in different SDKs.

client = SdkClient(environment=Environment.PRODUCTION)

api_controller = client.api_controller

vehicle = Vehicle(
make='Toyota',
model='Camry',
year=2022,
engine=Engine(
horsepower=300,
fuel_type=FuelTypeEnum.PETROL
)
)

result = api_controller.send_vehicle_information_in_header(vehicle)