curl --request POST \
--url http://127.0.0.1:8080/v1/c/customer/{customer_id}/activate \
--header 'Content-Type: application/json' \
--header 'wb-key: <api-key>' \
--data '
{
"notes": "Management told us to change their status"
}
'
Customer
Activate Customer
The API unpauses the customer. A paused customer will not be charged for his subscriptions and Entitlement API will show that the customer is not active and can’t use the assigned features.
POST
/
v1
/
c
/
customer
/
{customer_id}
/
activate
activate the customer
Copy
curl --request POST \
--url http://127.0.0.1:8080/v1/c/customer/{customer_id}/activate \
--header 'Content-Type: application/json' \
--header 'wb-key: <api-key>' \
--data '
{
"notes": "Management told us to change their status"
}
'