Was this helpful?
/configurations/{storeId}/properties
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" }'
{}
/configurations/{storeId}/properties/{key}
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'