Was this helpful?
curl -L \ --url 'https://api.laminar.run/configurations/{storeId}/properties/{key}' \ --header 'Authorization: Bearer JWT'
text
curl -L \ --request DELETE \ --url 'https://api.laminar.run/configurations/{storeId}/properties/{key}' \ --header 'Authorization: Bearer JWT'
{}
curl -L \ --url 'https://api.laminar.run/configurations/{storeId}/properties' \ --header 'Authorization: Bearer JWT'
{ "ANY_ADDITIONAL_PROPERTY": "text" }
curl -L \ --request PUT \ --url 'https://api.laminar.run/configurations/{storeId}/properties' \ --header 'Authorization: Bearer JWT' \ --header 'Content-Type: application/json' \ --data '{ "key": "text", "value": "text" }'