Podio API Documentation
Conversations: Reply to conversation
Creates a reply to the conversation.
Usage
- PHP Client
-
PodioConversation.php
PodioConversation::create_reply( $conversation_id, $attributes = array() );
- Ruby Gem
-
conversation.rb
Podio::Conversation.create_reply( conversation_id, text, file_ids = [], embed_id = nil, embed_file_id = nil )
Parameters
- conversation_id*
- Required.
Request
{
"text": The text of the reply,
"file_ids": The list of file ids to be attached to the message,
"embed_id": [OPTIONAL] The id of an embedded link that has been created with the Add an mebed operation in the Embed area,
"embed_url": The url to be attached
}
Response
{
"message_id": The id of the newly created message
}