Update a customer membership
PATCH/customer-memberships/ {customerMembershipId}/
v2
PATCH
customer-update-customer-membership
Request
Responses
Usage examples
- cURL
- JavaScript SDK
- PHP SDK
$ curl \
--fail \
--location \
-X PATCH \
-d '{"expiresAt":"2024-11-21T18:11:36.184Z","role":"notset"}' \
-H "Authorization: Bearer $MITTWALD_API_TOKEN" \
-H 'Content-Type: application/json' \
https://api.mittwald.de/v2/customer-memberships/f0f86186-0a5a-45b2-aa33-502777496347
import { MittwaldAPIV2Client } from "@mittwald/api-client";
import { assertStatus } from "@mittwald/api-client-commons";
const client = MittwaldAPIClient.newWithToken(process.env.MITTWALD_API_TOKEN);
const response = await client.customer.updateCustomerMembership({
"customerMembershipId": "f0f86186-0a5a-45b2-aa33-502777496347",
"data": {
"expiresAt": "2024-11-21T18:11:36.184Z",
"role": "notset"
}
});
assertStatus(response, 204);
use \Mittwald\ApiClient\Generated\V2\Clients\Customer\UpdateCustomerMembership\UpdateCustomerMembershipRequest;
use \Mittwald\ApiClient\Generated\V2\Clients\Customer\UpdateCustomerMembership\UpdateCustomerMembershipRequestBody;
$client = MittwaldAPIClient::newWithToken(getenv('MITTWALD_API_TOKEN'));
// TODO: Please consult the properties and constructor signature of
// UpdateCustomerMembershipRequestBody to learn how to construct a valid instance
$body = new UpdateCustomerMembershipRequestBody(/* TODO: ... */);
$request = (new UpdateCustomerMembershipRequest(
customerMembershipId: "f0f86186-0a5a-45b2-aa33-502777496347",
body: $body
));
$response = $client->customer()->updateCustomerMembership($request);
var_dump($response->getBody();