Microsoft Copilot · Example Payload

Microsoft Copilot Copilotchatcontinueconversation Example

AgentsAI AssistantArtificial IntelligenceChatbotCopilotExtensibilityGenerative AIMicrosoft 365Productivity

Microsoft Copilot Copilotchatcontinueconversation Example is an example object payload from Microsoft Copilot, with 6 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathsummaryrequestExamplesresponseExamples

Example Payload

Raw ↑
{
  "operationId": "copilot.chat.continueConversation",
  "method": "POST",
  "path": "/copilot/chat/conversations/{conversationId}/messages",
  "summary": "Microsoft Copilot Continue a Chat Conversation",
  "requestExamples": [
    {
      "contentType": "application/json",
      "name": "followUp",
      "example": {
        "prompt": "Can you provide more details on the revenue figures?"
      }
    }
  ],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "name": "CopilotChatContinueconversation200Example",
      "example": {
        "message": {
          "id": "abc123",
          "body": {
            "contentType": "example_value",
            "content": "example_value"
          },
          "citations": [
            {}
          ],
          "createdDateTime": "2026-01-15T10:30:00Z"
        }
      }
    }
  ]
}