> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://apidocs.makimoto.ai/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://apidocs.makimoto.ai/_mcp/server.

# summaryDelivered - Successful delivery

POST https://webhooks/summary-delivered
Content-Type: application/json

Delivered to your ``callback_url`` once a summarization request submitted with a ``callback_url`` finishes (or after delivery is abandoned on terminal failure).

Delivery:

- ``POST {callback_url}`` with ``Content-Type: application/json``; the
  body is the JSON shape below.
- Up to 3 attempts, with exponential backoff between tries and a 30 s
  per-request timeout.
- Retried on transport errors and on any non-2xx response. After the
  final attempt the delivery is abandoned (logged server-side; there is
  no API to query abandoned deliveries).

Receiver contract:

- Respond with any 2xx to acknowledge and stop retries; any non-2xx
  triggers a retry until the attempt cap.
- Deliveries are not signed and carry no idempotency key — correlate
  and dedupe on ``request_id``.


Reference: https://apidocs.makimoto.ai/makimoto-api-docs/webhooks/summary-delivered-successful-delivery

## OpenAPI Specification

```yaml
openapi: 3.1.0
info:
  title: collection
  version: 1.0.0
paths:
  /webhooks/summary-delivered:
    post:
      operationId: summary-delivered-successful-delivery
      summary: summaryDelivered - Successful delivery
      description: >
        Delivered to your ``callback_url`` once a summarization request
        submitted with a ``callback_url`` finishes (or after delivery is
        abandoned on terminal failure).


        Delivery:


        - ``POST {callback_url}`` with ``Content-Type: application/json``; the
          body is the JSON shape below.
        - Up to 3 attempts, with exponential backoff between tries and a 30 s
          per-request timeout.
        - Retried on transport errors and on any non-2xx response. After the
          final attempt the delivery is abandoned (logged server-side; there is
          no API to query abandoned deliveries).

        Receiver contract:


        - Respond with any 2xx to acknowledge and stop retries; any non-2xx
          triggers a retry until the attempt cap.
        - Deliveries are not signed and carry no idempotency key — correlate
          and dedupe on ``request_id``.
      tags:
        - subpackage_webhooks
      parameters:
        - name: apikey
          in: header
          description: API key required when calling through the API gateway.
          required: false
          schema:
            type: string
      responses:
        '200':
          description: >-
            Your receiver acknowledges with any 2xx, which stops retries. Any
            non-2xx triggers a retry until the attempt cap.
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/webhooks_summaryDelivered - Successful
                  delivery_Response_200
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                status:
                  type: string
                call_uuid:
                  type: string
                data:
                  $ref: >-
                    #/components/schemas/WebhooksSummaryDeliveredPostRequestBodyContentApplicationJsonSchemaData
              required:
                - status
                - call_uuid
                - data
servers:
  - url: https:/
    description: https://{baseurl}
components:
  schemas:
    WebhooksSummaryDeliveredPostRequestBodyContentApplicationJsonSchemaDataSummariesItems:
      type: object
      properties:
        topic:
          type: string
        summary:
          type: string
      required:
        - topic
        - summary
      title: >-
        WebhooksSummaryDeliveredPostRequestBodyContentApplicationJsonSchemaDataSummariesItems
    WebhooksSummaryDeliveredPostRequestBodyContentApplicationJsonSchemaData:
      type: object
      properties:
        summaries:
          type: array
          items:
            $ref: >-
              #/components/schemas/WebhooksSummaryDeliveredPostRequestBodyContentApplicationJsonSchemaDataSummariesItems
        request_id:
          type: string
        msg_id:
          type: string
          format: uuid
      required:
        - summaries
        - request_id
        - msg_id
      title: WebhooksSummaryDeliveredPostRequestBodyContentApplicationJsonSchemaData
    webhooks_summaryDelivered - Successful delivery_Response_200:
      type: object
      properties: {}
      description: Empty response body
      title: webhooks_summaryDelivered - Successful delivery_Response_200

```

## Examples



**Request**

```json
{
  "status": "S001",
  "call_uuid": "call-abc123",
  "data": {
    "summaries": [
      {
        "topic": "Billing Issue",
        "summary": "The customer contacted support for a billing issue. The agent offered help and resolved the issue."
      }
    ],
    "request_id": "f9f23b27019a553c04c2d4280d37fd42",
    "msg_id": "089f4f5c-32b3-4e98-9e76-e3eeca7f6aaf"
  }
}
```

**Response**

```json
{}
```

**SDK Code**

```python
import requests

url = "https://https/webhooks/summary-delivered"

payload = {
    "status": "S001",
    "call_uuid": "call-abc123",
    "data": {
        "summaries": [
            {
                "topic": "Billing Issue",
                "summary": "The customer contacted support for a billing issue. The agent offered help and resolved the issue."
            }
        ],
        "request_id": "f9f23b27019a553c04c2d4280d37fd42",
        "msg_id": "089f4f5c-32b3-4e98-9e76-e3eeca7f6aaf"
    }
}
headers = {
    "apikey": "{{apikey}}",
    "Content-Type": "application/json"
}

response = requests.post(url, json=payload, headers=headers)

print(response.json())
```

```javascript
const url = 'https://https/webhooks/summary-delivered';
const options = {
  method: 'POST',
  headers: {apikey: '{{apikey}}', 'Content-Type': 'application/json'},
  body: '{"status":"S001","call_uuid":"call-abc123","data":{"summaries":[{"topic":"Billing Issue","summary":"The customer contacted support for a billing issue. The agent offered help and resolved the issue."}],"request_id":"f9f23b27019a553c04c2d4280d37fd42","msg_id":"089f4f5c-32b3-4e98-9e76-e3eeca7f6aaf"}}'
};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```go
package main

import (
	"fmt"
	"strings"
	"net/http"
	"io"
)

func main() {

	url := "https://https/webhooks/summary-delivered"

	payload := strings.NewReader("{\n  \"status\": \"S001\",\n  \"call_uuid\": \"call-abc123\",\n  \"data\": {\n    \"summaries\": [\n      {\n        \"topic\": \"Billing Issue\",\n        \"summary\": \"The customer contacted support for a billing issue. The agent offered help and resolved the issue.\"\n      }\n    ],\n    \"request_id\": \"f9f23b27019a553c04c2d4280d37fd42\",\n    \"msg_id\": \"089f4f5c-32b3-4e98-9e76-e3eeca7f6aaf\"\n  }\n}")

	req, _ := http.NewRequest("POST", url, payload)

	req.Header.Add("apikey", "{{apikey}}")
	req.Header.Add("Content-Type", "application/json")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

```ruby
require 'uri'
require 'net/http'

url = URI("https://https/webhooks/summary-delivered")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Post.new(url)
request["apikey"] = '{{apikey}}'
request["Content-Type"] = 'application/json'
request.body = "{\n  \"status\": \"S001\",\n  \"call_uuid\": \"call-abc123\",\n  \"data\": {\n    \"summaries\": [\n      {\n        \"topic\": \"Billing Issue\",\n        \"summary\": \"The customer contacted support for a billing issue. The agent offered help and resolved the issue.\"\n      }\n    ],\n    \"request_id\": \"f9f23b27019a553c04c2d4280d37fd42\",\n    \"msg_id\": \"089f4f5c-32b3-4e98-9e76-e3eeca7f6aaf\"\n  }\n}"

response = http.request(request)
puts response.read_body
```

```java
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.post("https://https/webhooks/summary-delivered")
  .header("apikey", "{{apikey}}")
  .header("Content-Type", "application/json")
  .body("{\n  \"status\": \"S001\",\n  \"call_uuid\": \"call-abc123\",\n  \"data\": {\n    \"summaries\": [\n      {\n        \"topic\": \"Billing Issue\",\n        \"summary\": \"The customer contacted support for a billing issue. The agent offered help and resolved the issue.\"\n      }\n    ],\n    \"request_id\": \"f9f23b27019a553c04c2d4280d37fd42\",\n    \"msg_id\": \"089f4f5c-32b3-4e98-9e76-e3eeca7f6aaf\"\n  }\n}")
  .asString();
```

```php
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('POST', 'https://https/webhooks/summary-delivered', [
  'body' => '{
  "status": "S001",
  "call_uuid": "call-abc123",
  "data": {
    "summaries": [
      {
        "topic": "Billing Issue",
        "summary": "The customer contacted support for a billing issue. The agent offered help and resolved the issue."
      }
    ],
    "request_id": "f9f23b27019a553c04c2d4280d37fd42",
    "msg_id": "089f4f5c-32b3-4e98-9e76-e3eeca7f6aaf"
  }
}',
  'headers' => [
    'Content-Type' => 'application/json',
    'apikey' => '{{apikey}}',
  ],
]);

echo $response->getBody();
```

```csharp
using RestSharp;

var client = new RestClient("https://https/webhooks/summary-delivered");
var request = new RestRequest(Method.POST);
request.AddHeader("apikey", "{{apikey}}");
request.AddHeader("Content-Type", "application/json");
request.AddParameter("application/json", "{\n  \"status\": \"S001\",\n  \"call_uuid\": \"call-abc123\",\n  \"data\": {\n    \"summaries\": [\n      {\n        \"topic\": \"Billing Issue\",\n        \"summary\": \"The customer contacted support for a billing issue. The agent offered help and resolved the issue.\"\n      }\n    ],\n    \"request_id\": \"f9f23b27019a553c04c2d4280d37fd42\",\n    \"msg_id\": \"089f4f5c-32b3-4e98-9e76-e3eeca7f6aaf\"\n  }\n}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
```

```swift
import Foundation

let headers = [
  "apikey": "{{apikey}}",
  "Content-Type": "application/json"
]
let parameters = [
  "status": "S001",
  "call_uuid": "call-abc123",
  "data": [
    "summaries": [
      [
        "topic": "Billing Issue",
        "summary": "The customer contacted support for a billing issue. The agent offered help and resolved the issue."
      ]
    ],
    "request_id": "f9f23b27019a553c04c2d4280d37fd42",
    "msg_id": "089f4f5c-32b3-4e98-9e76-e3eeca7f6aaf"
  ]
] as [String : Any]

let postData = JSONSerialization.data(withJSONObject: parameters, options: [])

let request = NSMutableURLRequest(url: NSURL(string: "https://https/webhooks/summary-delivered")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "POST"
request.allHTTPHeaderFields = headers
request.httpBody = postData as Data

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
```