API v2 - Customer Tenant - How to switch account from trial mode to production
After successfully posting a customer tenant (on uri /api/2/tenants) with minimal data (just name, parent_id, kind, brand_id and default_idp_id) I've noticed that it was created as a Trial account by default. Checking on the available documentation I haven't found how to switch it into production. How this can be done? Also, is it possible to create a customer tenant in production mode directly?
Related to this, I'd also like to know what this switching action really does. For instance, in the Data Cloud's web interface I've noticed that a Customer Tenant already into production mode cannot be turned back to trial, and that made me wonder about any other consecuences of the switching (like in billing I suppose).

- Anmelden, um Kommentare verfassen zu können

You can use
api 1 /groups/{group} with the customer_id
with body:
{
"pricing": {
"currency": "EUR",
"mode": 1,
"mode_update_date": null,
"price": null,
"discounts": [
{
"enabled": 0,
"name": "educations"
}
],
"enabled": 1,
"storage_discount": null,
"rating": null
}
}
- Anmelden, um Kommentare verfassen zu können