Learn how to perform bulk operations on links.
curl --request POST \ --url https://api.codeqr.io/links/bulk \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' --data '[ { "url": "https://google.com" }, { "url": "https://google.uk" } ]'
curl --request PATCH \ --url https://api.codeqr.io/links/bulk \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{"link_ids": ["clux0rgak00011...", "clux0rgak00022..."], "data": {"utm_source": "facebook", "utm_medium": "cpc"}}'
curl --request DELETE \ --url https://api.codeqr.io/links/bulk?linkIds=clux0rgak00011... \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json'