addedInput schema / properties / conversationId
Added value: +{
+ "description": "ID of existing conversation (required if sending in existing conversation)",
+ "type": "string"
+}
removedInput schema / properties / conversation_id
Removed value: -{
- "description": "ID of existing conversation (required if sending in existing conversation)",
- "type": "string"
-}
addedInput schema / properties / emailCopyToSender
Added value: +{
+ "description": "Whether to email a copy to the sender",
+ "type": "boolean"
+}
removedInput schema / properties / email_copy_to_sender
Removed value: -{
- "description": "Whether to email a copy to the sender",
- "type": "boolean"
-}
addedInput schema / properties / messageMedia
Added value: +{
+ "description": "Array of up to 5 media attachments",
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "mediaName": {
+ "description": "Name of the media",
+ "type": "string"
+ },
+ "mediaType": {
+ "description": "Type of media: IMAGE, PDF, DOC, TXT",
+ "type": "string"
+ },
+ "mediaUrl": {
+ "description": "HTTPS URL of the self-hosted media",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "maxItems": 5,
+ "type": "array"
+}
addedInput schema / properties / messageText
Added value: +{
+ "description": "The text of the message (max 2000 characters)",
+ "maxLength": 2000,
+ "type": "string"
+}
removedInput schema / properties / message_media
Removed value: -{
- "description": "Array of up to 5 media attachments",
- "items": {
- "additionalProperties": false,
- "properties": {
- "media_name": {
- "description": "Name of the media",
- "type": "string"
- },
- "media_type": {
- "description": "Type of media: IMAGE, PDF, DOC, TXT",
- "type": "string"
- },
- "media_url": {
- "description": "HTTPS URL of the self-hosted media",
- "type": "string"
- }
- },
- "type": "object"
- },
- "maxItems": 5,
- "type": "array"
-}
removedInput schema / properties / message_text
Removed value: -{
- "description": "The text of the message (max 2000 characters)",
- "maxLength": 2000,
- "type": "string"
-}
addedInput schema / properties / otherPartyUsername
Added value: +{
+ "description": "eBay username to send message to (required for new conversations)",
+ "type": "string"
+}
removedInput schema / properties / other_party_username
Removed value: -{
- "description": "eBay username to send message to (required for new conversations)",
- "type": "string"
-}
addedInput schema / properties / reference / properties / referenceId
Added value: +{
+ "description": "The reference ID (e.g., item ID for LISTING)",
+ "type": "string"
+}
addedInput schema / properties / reference / properties / referenceType
Added value: +{
+ "description": "The reference type (currently only LISTING is supported)",
+ "type": "string"
+}
removedInput schema / properties / reference / properties / reference_id
Removed value: -{
- "description": "The reference ID (e.g., item ID for LISTING)",
- "type": "string"
-}
removedInput schema / properties / reference / properties / reference_type
Removed value: -{
- "description": "The reference type (currently only LISTING is supported)",
- "type": "string"
-}