Microsoft Copilot · Example Payload

Microsoft Copilot Copilotchatstartconversation Example

AgentsAI AssistantArtificial IntelligenceChatbotCopilotExtensibilityGenerative AIMicrosoft 365Productivity

Microsoft Copilot Copilotchatstartconversation 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.startConversation",
  "method": "POST",
  "path": "/copilot/chat/conversations",
  "summary": "Microsoft Copilot Start a Chat Conversation",
  "requestExamples": [
    {
      "contentType": "application/json",
      "name": "startConversation",
      "example": {
        "prompt": "What are the key highlights from last quarter's financial report?"
      }
    },
    {
      "contentType": "application/json",
      "name": "conversationWithOptions",
      "example": {
        "prompt": "Summarize the latest HR policy changes",
        "enableWebSearch": false
      }
    }
  ],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "name": "CopilotChatStartconversation200Example",
      "example": {
        "conversationId": "500123",
        "message": {
          "id": "abc123",
          "body": {
            "contentType": "example_value",
            "content": "example_value"
          },
          "citations": [
            {}
          ],
          "createdDateTime": "2026-01-15T10:30:00Z"
        }
      }
    }
  ]
}