Update the basic properties of the conversation
PUT/conversations/ {conversationId}/
v2
PUT
conversation-update-conversation
Request
Responses
Usage examples
- cURL
- JavaScript SDK
- PHP SDK
$ curl \
--fail \
--location \
-X PUT \
-H "Authorization: Bearer $MITTWALD_API_TOKEN" \
https://api.mittwald.de/v2/conversations/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.conversation.updateConversation({
"conversationId": "f0f86186-0a5a-45b2-aa33-502777496347"
});
assertStatus(response, 200);
use \Mittwald\ApiClient\Generated\V2\Clients\Conversation\UpdateConversation\UpdateConversationRequest;
use \Mittwald\ApiClient\Generated\V2\Clients\Conversation\UpdateConversation\UpdateConversationRequestBody;
$client = MittwaldAPIClient::newWithToken(getenv('MITTWALD_API_TOKEN'));
// TODO: Please consult the properties and constructor signature of
// UpdateConversationRequestBody to learn how to construct a valid instance
$body = new UpdateConversationRequestBody(/* TODO: ... */);
$request = (new UpdateConversationRequest(
conversationId: "f0f86186-0a5a-45b2-aa33-502777496347",
body: $body
));
$response = $client->conversation()->updateConversation($request);
var_dump($response->getBody();