Update an organization
How to update an existing organization via API
To update an existing organization, send a PATCH
request to the /api/organizations/:id
endpoint, where id
is the ID of the resource that you want to update.
Here below the list of all the possible arguments that you can pass with the request body.
Request
PATCH https://provisioning.commercelayer.io/api/organizations/:id
Arguments
Body Parameter | Type | Required |
---|---|---|
type |
| Required |
id |
| Required |
attributes.name |
| Optional |
attributes.support_phone |
| Optional |
attributes.support_email |
| Optional |
attributes.logo_url |
| Optional |
attributes.favicon_url |
| Optional |
attributes.primary_color |
| Optional |
attributes.contrast_color |
| Optional |
attributes.gtm_id |
| Optional |
attributes.gtm_id_test |
| Optional |
attributes.config |
| Optional |
attributes.reference |
| Optional |
attributes.reference_origin |
| Optional |
attributes.metadata |
| Optional |
Example
The following request updates the organization identified by the ID "xYZkjABcde":
curl -g -X PATCH \
'https://provisioning.commercelayer.io/api/organizations/xYZkjABcde' \
-H 'Accept: application/vnd.api+json' \
-H 'Authorization: Bearer {{your_access_token}}' \
-H 'Content-Type: application/vnd.api+json' \
-d '{
"data": {
"type": "organizations",
"id": "xYZkjABcde",
"attributes": {
"reference": "ANY-EXTERNAL-REFEFERNCE"
}
}
}'
On success, the API responds with a 200 OK
status code, returning the updated resource object:
{
"data": {
"id": "xYZkjABcde",
"type": "organizations",
"links": {
"self": "https://provisioning.commercelayer.io/api/organizations/xYZkjABcde"
},
"attributes": {
"name": "The Blue Brand",
"slug": "the-blue-brand",
"domain": "the-blue-brand.commercelayer.io",
"support_phone": "+01 30800857",
"support_email": "support@bluebrand.com",
"logo_url": "https://bluebrand.com/img/logo.svg",
"favicon_url": "https://bluebrand.com/img/favicon.ico",
"primary_color": "#C8984E",
"contrast_color": "#FFFFCC",
"gtm_id": "GTM-5FJXX6",
"gtm_id_test": "GTM-5FJXX7",
"region": "eu-west-1",
"can_switch_live": false,
"subscription_info": {
"plan_type": "growth",
"limits": {
"markets": 5,
"skus": 10000,
"organizations": 2,
"memberships": 5
},
"totals": {
"organizations": 1,
"markets": 0,
"memberships": 2,
"skus": 0
}
},
"config": {
"mfe": {
"default": {
"links": {
"cart": "https://cart.example.com/:order_id?accessToken=:access_token",
"checkout": "https://checkout.example.com/:order_id?accessToken=:access_token",
"identity": "https://example.com/login",
"microstore": "https://example.com/microstore/?accessToken=:access_token",
"my_account": "https://example.com/my-custom-account?accessToken=:access_token"
},
"checkout": {
"thankyou_page": "https://example.com/thanks/:lang/:order_id",
"billing_countries": [
{
"value": "ES",
"label": "Espana"
},
{
"value": "IT",
"label": "Italia"
},
{
"value": "US",
"label": "Unites States of America"
}
],
"shipping_countries": [
{
"value": "ES",
"label": "Espana"
},
{
"value": "IT",
"label": "Italia"
},
{
"value": "US",
"label": "Unites States of America"
}
],
"billing_states": {
"FR": [
{
"value": "PA",
"label": "Paris"
},
{
"value": "LY",
"label": "Lyon"
},
{
"value": "NI",
"label": "Nice"
},
{
"value": "MA",
"label": "Marseille"
},
{
"value": "BO",
"label": "Bordeaux"
}
]
},
"shipping_states": {
"FR": [
{
"value": "PA",
"label": "Paris"
},
{
"value": "LY",
"label": "Lyon"
},
{
"value": "NI",
"label": "Nice"
},
{
"value": "MA",
"label": "Marseille"
},
{
"value": "BO",
"label": "Bordeaux"
}
]
},
"default_country": "US"
},
"urls": {
"privacy": "https://example.com/privacy/:lang",
"terms": "https://example.com/terms/:lang"
}
},
"market:id:ZKcv13rT": {
"links": {
"cart": "https://example.com/custom-cart/:order_id?accessToken=:access_token"
},
"checkout": {
"thankyou_page": "https://example.com/thanks/:order_id"
}
}
}
},
"api_auth_redirect": true,
"api_rules_engine": false,
"api_purge_single_resource": false,
"addresses_phone_required": true,
"orders_autorefresh_cutoff_test": 50,
"orders_autorefresh_cutoff_live": 500,
"orders_number_editable_test": false,
"orders_number_editable_live": false,
"orders_number_as_reference": true,
"bundles_max_items_count": 10,
"coupons_min_code_length": 8,
"coupons_max_code_length": 40,
"gift_cards_min_code_length": 8,
"gift_cards_max_code_length": 40,
"cleanups_max_concurrent_count": 10,
"exports_max_concurrent_count": 10,
"imports_max_concurrent_count": 10,
"imports_purge_cache": true,
"promotions_max_concurrent_count": 10,
"imports_trigger_webhooks": 0,
"tax_calculators_errors": false,
"external_promotions_errors": false,
"created_at": "2018-01-01T12:00:00.000Z",
"updated_at": "2018-01-01T12:00:00.000Z",
"reference": "ANY-EXTERNAL-REFEFERNCE",
"reference_origin": "ANY-EXTERNAL-REFEFERNCE-ORIGIN",
"metadata": {
"foo": "bar"
}
},
"relationships": {
"memberships": {
"links": {
"self": "https://provisioning.commercelayer.io/api/organizations/xYZkjABcde/relationships/memberships",
"related": "https://provisioning.commercelayer.io/api/organizations/xYZkjABcde/memberships"
}
},
"roles": {
"links": {
"self": "https://provisioning.commercelayer.io/api/organizations/xYZkjABcde/relationships/roles",
"related": "https://provisioning.commercelayer.io/api/organizations/xYZkjABcde/roles"
}
},
"permissions": {
"links": {
"self": "https://provisioning.commercelayer.io/api/organizations/xYZkjABcde/relationships/permissions",
"related": "https://provisioning.commercelayer.io/api/organizations/xYZkjABcde/permissions"
}
},
"api_credentials": {
"links": {
"self": "https://provisioning.commercelayer.io/api/organizations/xYZkjABcde/relationships/api_credentials",
"related": "https://provisioning.commercelayer.io/api/organizations/xYZkjABcde/api_credentials"
}
}
}
}
}
Last updated