What's the proper way to represent arrays on calls made to the HubSpot API?

I’m using the HubSpot Domains API (v3). The documentation states that the “sort” param accepts an array. What’s the convention to represent arrays in this case?

Let assume I want to set:

sort = [“id”, “column”]

The command would look like this?

curl --request GET
--url ‘https://api.hubapi.com/cms/v3/domains/?**sort=id& sort=column**&hapikey=YOUR_HUBSPOT_API_KEY’

@FSuarezBonill

That looks correct. Friendly reminder that you should move away from hapikeys and move toward private apps

We are beginning the process of sunsetting hapikeys.

Thanks for clarifying this :folded_hands:.
Regarding the hapikeys… Yes, I’m already using Private apps, just used that as it was copied from the official docs.
Regards.