By default, ApiDog sends array query parameters in the following format:
http://my-api.co?name=1&name=2
However, OpenAPI 3 allows different serialization styles for query parameters, including:
- form (
name=1,2,3
) - spaceDelimited (
name=1 2 3
) - pipeDelimited (
name=1|2|3
) - deepObject (
name[0]=1&name[1]=2&name[2]=3
)
I would like to know if there is an option to customize this behavior in ApiDog to match one of these serialization styles (with or without explode
).
Reference:
OpenAPI 3 Query Parameter Serialization