Update shop settings
PUT
/shops/{id}/settings
const url = 'https://example.com/shops/example/settings';const options = { method: 'PUT', headers: {'Content-Type': 'application/json'}, body: '{"return_policy_url":"example"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request PUT \ --url https://example.com/shops/example/settings \ --header 'Content-Type: application/json' \ --data '{ "return_policy_url": "example" }'Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” id
required
string
Request Body required
Section titled “Request Body required ”Responses
Section titled “ Responses ” Media type application/json