> 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.

# transcriptDelivered - Background processing failed

POST https://webhooks/transcript-delivered#postWebhooksTranscript-delivered2
Content-Type: application/json

Delivered to your ``callback_url`` once a transcription request submitted with a ``callback_url`` finishes (or after delivery is abandoned on terminal failure). The transcript ``data`` matches the inline (200) response; ``request_id`` is at the top level (not nested under ``data``).

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/transcript-delivered-background-processing-failed

## OpenAPI Specification

```yaml
openapi: 3.1.0
info:
  title: collection
  version: 1.0.0
paths:
  /webhooks/transcript-delivered#postWebhooksTranscript-delivered2:
    post:
      operationId: transcript-delivered-background-processing-failed
      summary: transcriptDelivered - Background processing failed
      description: >
        Delivered to your ``callback_url`` once a transcription request
        submitted with a ``callback_url`` finishes (or after delivery is
        abandoned on terminal failure). The transcript ``data`` matches the
        inline (200) response; ``request_id`` is at the top level (not nested
        under ``data``).


        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_transcriptDelivered - Background
                  processing failed_Response_200
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                status:
                  type: string
                request_id:
                  type: string
                call_uuid:
                  type: string
                error:
                  type: string
              required:
                - status
                - request_id
                - call_uuid
                - error
servers:
  - url: https:/
    description: https://{baseurl}
components:
  schemas:
    webhooks_transcriptDelivered - Background processing failed_Response_200:
      type: object
      properties: {}
      description: Empty response body
      title: webhooks_transcriptDelivered - Background processing failed_Response_200

```

## Examples



**Request**

```json
{
  "status": "E001",
  "request_id": "f9f23b27019a553c04c2d4280d37fd42",
  "call_uuid": "call-abc123",
  "error": "Transcription failed during inference."
}
```

**Response**

```json
{}
```

**SDK Code**

```python
import requests

url = "https://https/webhooks/transcript-delivered#postWebhooksTranscript-delivered2"

payload = {
    "status": "E001",
    "request_id": "f9f23b27019a553c04c2d4280d37fd42",
    "call_uuid": "call-abc123",
    "error": "Transcription failed during inference."
}
headers = {
    "apikey": "{{apikey}}",
    "Content-Type": "application/json"
}

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

print(response.json())
```

```javascript
const url = 'https://https/webhooks/transcript-delivered#postWebhooksTranscript-delivered2';
const options = {
  method: 'POST',
  headers: {apikey: '{{apikey}}', 'Content-Type': 'application/json'},
  body: '{"status":"E001","request_id":"f9f23b27019a553c04c2d4280d37fd42","call_uuid":"call-abc123","error":"Transcription failed during inference."}'
};

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/transcript-delivered#postWebhooksTranscript-delivered2"

	payload := strings.NewReader("{\n  \"status\": \"E001\",\n  \"request_id\": \"f9f23b27019a553c04c2d4280d37fd42\",\n  \"call_uuid\": \"call-abc123\",\n  \"error\": \"Transcription failed during inference.\"\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/transcript-delivered#postWebhooksTranscript-delivered2")

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\": \"E001\",\n  \"request_id\": \"f9f23b27019a553c04c2d4280d37fd42\",\n  \"call_uuid\": \"call-abc123\",\n  \"error\": \"Transcription failed during inference.\"\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/transcript-delivered#postWebhooksTranscript-delivered2")
  .header("apikey", "{{apikey}}")
  .header("Content-Type", "application/json")
  .body("{\n  \"status\": \"E001\",\n  \"request_id\": \"f9f23b27019a553c04c2d4280d37fd42\",\n  \"call_uuid\": \"call-abc123\",\n  \"error\": \"Transcription failed during inference.\"\n}")
  .asString();
```

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

$client = new \GuzzleHttp\Client();

$response = $client->request('POST', 'https://https/webhooks/transcript-delivered#postWebhooksTranscript-delivered2', [
  'body' => '{
  "status": "E001",
  "request_id": "f9f23b27019a553c04c2d4280d37fd42",
  "call_uuid": "call-abc123",
  "error": "Transcription failed during inference."
}',
  'headers' => [
    'Content-Type' => 'application/json',
    'apikey' => '{{apikey}}',
  ],
]);

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

```csharp
using RestSharp;

var client = new RestClient("https://https/webhooks/transcript-delivered#postWebhooksTranscript-delivered2");
var request = new RestRequest(Method.POST);
request.AddHeader("apikey", "{{apikey}}");
request.AddHeader("Content-Type", "application/json");
request.AddParameter("application/json", "{\n  \"status\": \"E001\",\n  \"request_id\": \"f9f23b27019a553c04c2d4280d37fd42\",\n  \"call_uuid\": \"call-abc123\",\n  \"error\": \"Transcription failed during inference.\"\n}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
```

```swift
import Foundation

let headers = [
  "apikey": "{{apikey}}",
  "Content-Type": "application/json"
]
let parameters = [
  "status": "E001",
  "request_id": "f9f23b27019a553c04c2d4280d37fd42",
  "call_uuid": "call-abc123",
  "error": "Transcription failed during inference."
] as [String : Any]

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

let request = NSMutableURLRequest(url: NSURL(string: "https://https/webhooks/transcript-delivered#postWebhooksTranscript-delivered2")! 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()
```