curl --request PATCH \
--url https://api.wirespeed.co/team/sku-change-request/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"status": "pending",
"sku": "identity",
"isTrial": true,
"skuStartDate": "<string>",
"skuEndDate": "<string>"
}
'{
"message": "<string>",
"statusCode": 123
}curl --request PATCH \
--url https://api.wirespeed.co/team/sku-change-request/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"status": "pending",
"sku": "identity",
"isTrial": true,
"skuStartDate": "<string>",
"skuEndDate": "<string>"
}
'{
"message": "<string>",
"statusCode": 123
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
SKU change request ID
Target status to transition the request to
pending, accepted, denied, accepted_with_modifications, cancelled Final SKU to apply (required for accept_with_modifications)
identity, adr, unlimited Whether the subscription is a trial
Subscription start date (ISO string)
Subscription end date (ISO string)