Update Sender

Updates a Sender.

PUT https://api.cm.com/messages/v1/accounts/{accountId}/senders/{senderId}

Parameters

TypeNameDescriptionSchema
PathaccountId
required
The accountId.string (uuid)
PathsenderId
required
The identifier.string (uuid)

Body parameter

The sender.

Name : senderPreset
Flags : required
Type : CM.Platform.Campaigns.Models.ApiSenderPresetRequest

Responses

Example HTTP request

Request path
https://api.cm.com/messages/v1/accounts/00000000-0000-0000-0000-000000000000/senders/00000000-0000-0000-0000-000000000000
Request body
{
  "isFavorite" : true,
  "name" : "string",
  "senders" : {
    "string" : "string"
  }
}

Example HTTP response

Response 200
{
  "id" : "00000000-0000-0000-0000-000000000000",
  "isFavorite" : true,
  "name" : "string",
  "senders" : {
    "string" : "string"
  }
}