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

# Permanently redact personal information

POST https://api.cloudraker.com/v1/redact
Content-Type: application/json

Destructively removes personal information from a document or an audio file and returns a new file.

The removal is real, not cosmetic: text is stripped out of the PDF content stream rather than covered with a black box, and audio is beeped or silenced with its transcript rewritten to match.

**Routing is by the input's media type**, and the parameters are not interchangeable:

- **Documents** — `mode`: `targeted` (default, per-entity boxes) or `lines` (whole lines).
- **Audio and video** — `style`: `beep` or `silence`.

Sending the other medium's parameter is a `400`.

**Choosing what to remove.** `categories` lists what counts as sensitive; the defaults cover names, government ids, addresses, phone numbers, email addresses and dates of birth. `instructions` adds free-form guidance on top. The result reports `output.entities` — a per-category count of what was removed — and `output.skipped`, the documents that had nothing to redact.

```json
{
  "file": { "id": "a04d6597-4e34-4a99-94ea-964c289a4c68" },
  "categories": ["ssn", "ein"],
  "mode": "targeted"
}
```

### Waiting for the result

Sync by default: the call holds open until the run finishes, up to `?wait=` seconds (default `60`, max `120`, `0` returns immediately).

| Outcome | Response |
| --- | --- |
| Finished inside the window | `200` with the full run |
| Still running at the cap | `202` with `{object, id, status, statusUrl}` |
| Parked for a human | `202` right away, `status: "needs_input"` plus `tasks[]` |

<Note>
The `202` is a graceful degrade, never an error — poll [the run](https://docs.cloudraker.com/api/cloud-raker-api/runs/get-run) or wait for a [webhook](https://docs.cloudraker.com/api/cloud-raker-api/webhooks/create-webhook-endpoint). Replaying an `idempotency-key` returns the original run alongside an `idempotent-replay: true` response header.
</Note>

**Learn more:** [Redaction guide](https://docs.cloudraker.com/capabilities/redact)

Reference: https://docs.cloudraker.com/api/cloud-raker-api/capabilities/redact

## OpenAPI Specification

```yaml
openapi: 3.1.0
info:
  title: CloudRaker API
  version: 1.0.0
paths:
  /v1/redact:
    post:
      operationId: redact
      summary: Permanently redact personal information
      description: >-
        Destructively removes personal information from a document or an audio
        file and returns a new file.


        The removal is real, not cosmetic: text is stripped out of the PDF
        content stream rather than covered with a black box, and audio is beeped
        or silenced with its transcript rewritten to match.


        **Routing is by the input's media type**, and the parameters are not
        interchangeable:


        - **Documents** — `mode`: `targeted` (default, per-entity boxes) or
        `lines` (whole lines).

        - **Audio and video** — `style`: `beep` or `silence`.


        Sending the other medium's parameter is a `400`.


        **Choosing what to remove.** `categories` lists what counts as
        sensitive; the defaults cover names, government ids, addresses, phone
        numbers, email addresses and dates of birth. `instructions` adds
        free-form guidance on top. The result reports `output.entities` — a
        per-category count of what was removed — and `output.skipped`, the
        documents that had nothing to redact.


        ```json

        {
          "file": { "id": "a04d6597-4e34-4a99-94ea-964c289a4c68" },
          "categories": ["ssn", "ein"],
          "mode": "targeted"
        }

        ```


        ### Waiting for the result


        Sync by default: the call holds open until the run finishes, up to
        `?wait=` seconds (default `60`, max `120`, `0` returns immediately).


        | Outcome | Response |

        | --- | --- |

        | Finished inside the window | `200` with the full run |

        | Still running at the cap | `202` with `{object, id, status,
        statusUrl}` |

        | Parked for a human | `202` right away, `status: "needs_input"` plus
        `tasks[]` |


        <Note>

        The `202` is a graceful degrade, never an error — poll [the
        run](https://docs.cloudraker.com/api/cloud-raker-api/runs/get-run) or
        wait for a
        [webhook](https://docs.cloudraker.com/api/cloud-raker-api/webhooks/create-webhook-endpoint).
        Replaying an `idempotency-key` returns the original run alongside an
        `idempotent-replay: true` response header.

        </Note>


        **Learn more:** [Redaction
        guide](https://docs.cloudraker.com/capabilities/redact)
      tags:
        - ''
      parameters:
        - name: wait
          in: query
          description: >-
            How many seconds to hold the request open waiting for the run to
            finish.


            Defaults to `60`, maximum `120`. Finishing inside the window returns
            `200` with the full run; running past it returns `202` with a
            `statusUrl` to poll. Send `0` to skip waiting entirely and always
            get the `202`.
          required: false
          schema:
            type: integer
            default: 60
        - name: Authorization
          in: header
          description: Bearer authentication
          required: true
          schema:
            type: string
      responses:
        '200':
          description: The finished run.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/V1RedactRun'
        '400':
          description: Invalid request (`invalid_request` / `invalid_schema`).
          content:
            application/json:
              schema:
                description: Any type
        '422':
          description: Unusable input file or webhook endpoint.
          content:
            application/json:
              schema:
                description: Any type
        '429':
          description: >-
            Rate limited. The `/v1` API allows at least **67 requests per minute
            per organization** (about 1,000 requests per 15 minutes) — a
            guaranteed floor, enforced per edge location, so a geographically
            spread caller may get more. Wait for the `Retry-After` interval and
            retry — the error is `retryable`.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RedactRequestTooManyRequestsError'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/V1RedactBody'
servers:
  - url: https://api.cloudraker.com
    description: Production
  - url: https://api.staging.raker.one
    description: Staging
  - url: https://api.dev.raker.one
    description: Development
components:
  schemas:
    V1RedactBodyMode:
      type: string
      enum:
        - targeted
        - lines
      title: V1RedactBodyMode
    V1RedactBodyStyle:
      type: string
      enum:
        - beep
        - silence
      title: V1RedactBodyStyle
    V1RedactBodyFileOneOf0Processing:
      type: string
      enum:
        - auto
        - ocr
        - simple
        - transcribe
        - transcribe_diarize
      title: V1RedactBodyFileOneOf0Processing
    V1RedactBodyFile0:
      type: object
      properties:
        url:
          type: string
          format: uri
        name:
          type: string
        processing:
          $ref: '#/components/schemas/V1RedactBodyFileOneOf0Processing'
      required:
        - url
      title: V1RedactBodyFile0
    V1RedactBodyFile1:
      type: object
      properties:
        id:
          type: string
      required:
        - id
      title: V1RedactBodyFile1
    V1RedactBodyFile:
      oneOf:
        - $ref: '#/components/schemas/V1RedactBodyFile0'
        - $ref: '#/components/schemas/V1RedactBodyFile1'
      description: >-
        An input file, given one of two ways.


        - `{ "url": "…", "name"?: "…", "processing"?: "…" }` — fetched over
        http(s) for this run and purged with it.

        - `{ "id": "…" }` — a file you already registered with `POST /v1/files`,
        reusable across runs and never re-parsed.
      title: V1RedactBodyFile
    V1RedactBodyWebhook0:
      type: object
      properties:
        url:
          type: string
          format: uri
      required:
        - url
      title: V1RedactBodyWebhook0
    V1RedactBodyWebhook1:
      type: object
      properties:
        id:
          type: string
      required:
        - id
      title: V1RedactBodyWebhook1
    V1RedactBodyWebhook:
      oneOf:
        - $ref: '#/components/schemas/V1RedactBodyWebhook0'
        - $ref: '#/components/schemas/V1RedactBodyWebhook1'
      description: >-
        Where to deliver this run's events, given one of two ways.


        - `{ "url": "…" }` — a one-off https endpoint for this run only.

        - `{ "id": "whe_…" }` — a saved endpoint from `POST /v1/webhooks`. Runs
        hold the reference, so pausing or re-pointing that endpoint applies to
        this run too.


        Deliveries are at-least-once and signed — dedupe on `eventId` and verify
        against `GET /v1/webhooks/jwks.json`.
      title: V1RedactBodyWebhook
    V1RedactBody:
      type: object
      properties:
        categories:
          type: array
          items:
            type: string
        instructions:
          type: string
        mode:
          $ref: '#/components/schemas/V1RedactBodyMode'
        style:
          $ref: '#/components/schemas/V1RedactBodyStyle'
        action:
          type: string
        file:
          $ref: '#/components/schemas/V1RedactBodyFile'
          description: >-
            An input file, given one of two ways.


            - `{ "url": "…", "name"?: "…", "processing"?: "…" }` — fetched over
            http(s) for this run and purged with it.

            - `{ "id": "…" }` — a file you already registered with `POST
            /v1/files`, reusable across runs and never re-parsed.
        metadata:
          type: object
          additionalProperties:
            description: Any type
          description: >-
            Arbitrary JSON you attach to the run and get back on every read of
            it.


            Use it to carry your own identifiers — an order number, a customer
            id — so a webhook or a polled run reconciles without a lookup table.
            Capped at 10 KB serialized.
        webhook:
          $ref: '#/components/schemas/V1RedactBodyWebhook'
          description: >-
            Where to deliver this run's events, given one of two ways.


            - `{ "url": "…" }` — a one-off https endpoint for this run only.

            - `{ "id": "whe_…" }` — a saved endpoint from `POST /v1/webhooks`.
            Runs hold the reference, so pausing or re-pointing that endpoint
            applies to this run too.


            Deliveries are at-least-once and signed — dedupe on `eventId` and
            verify against `GET /v1/webhooks/jwks.json`.
        ttl:
          type: integer
          description: >-
            How long, in seconds, to keep this run and its files before purging
            them automatically.


            Defaults to 24 hours; the maximum is 604800 (7 days). The deadline
            comes back as `expiresAt` on every read of the run. Call `POST
            /v1/runs/{id}/keep` before then to clear the TTL and move the
            results into a space permanently.


            E-signature runs are exempt — an envelope waits for its signers
            however long that takes.
      required:
        - file
      title: V1RedactBody
    V1RedactRunStatus:
      type: string
      enum:
        - queued
        - processing
        - processed
        - failed
        - cancelled
        - expired
        - needs_input
      description: |-
        Where the run is in its life.

        | Status | Meaning |
        | --- | --- |
        | `queued` | Accepted, not started |
        | `processing` | Work in flight |
        | `needs_input` | Parked for a person — see `tasks[]` |
        | `processed` | Finished; `output` is populated |
        | `failed` | Finished unsuccessfully |
        | `cancelled` | Stopped on request |
        | `expired` | TTL elapsed and the data was purged |

        The last four are terminal.
      title: V1RedactRunStatus
    V1RedactRunFilesItems:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        status:
          type: string
        error:
          type: string
      required:
        - id
        - name
        - status
      title: V1RedactRunFilesItems
    V1RedactRunFile:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        status:
          type: string
        error:
          type: string
      required:
        - id
        - name
        - status
      title: V1RedactRunFile
    V1RedactRunError:
      type: object
      properties:
        code:
          type: string
        message:
          type: string
      required:
        - code
        - message
      description: >-
        Why the run failed. Present whenever `status` is `failed`, and only
        then.


        `code` is the stable, snake_case reason (`input_unavailable`,
        `parse_failed`, …); `message` is the human-readable detail. Per-file and
        per-step failures are also reported in `files[].error` and, for a
        pipeline, `steps[].error`.
      title: V1RedactRunError
    V1RedactRunTasksItems:
      type: object
      properties:
        id:
          type: string
        title:
          type: string
        url:
          type: string
      required:
        - id
        - title
        - url
      title: V1RedactRunTasksItems
    V1RedactRunOutputFile:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        url:
          type: string
      required:
        - id
        - name
      title: V1RedactRunOutputFile
    V1RedactRunOutputFilesItems:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        url:
          type: string
      required:
        - id
        - name
      title: V1RedactRunOutputFilesItems
    V1RedactRunOutput:
      type: object
      properties:
        file:
          $ref: '#/components/schemas/V1RedactRunOutputFile'
        files:
          type: array
          items:
            $ref: '#/components/schemas/V1RedactRunOutputFilesItems'
        entities:
          type: object
          additionalProperties:
            type: number
            format: double
        skipped:
          type: number
          format: double
      required:
        - files
      description: >-
        The redacted files. Present once `status` is `processed`.


        `files[]` holds the new documents — `file` is an alias of the first for
        single-file runs — each with a signed download link. `entities` tallies
        what was removed per category, and `skipped` counts documents that
        contained nothing to redact and so produced no new file.
      title: V1RedactRunOutput
    V1RedactRun:
      type: object
      properties:
        object:
          type: string
          enum:
            - redact_run
        id:
          type: string
        status:
          $ref: '#/components/schemas/V1RedactRunStatus'
          description: |-
            Where the run is in its life.

            | Status | Meaning |
            | --- | --- |
            | `queued` | Accepted, not started |
            | `processing` | Work in flight |
            | `needs_input` | Parked for a person — see `tasks[]` |
            | `processed` | Finished; `output` is populated |
            | `failed` | Finished unsuccessfully |
            | `cancelled` | Stopped on request |
            | `expired` | TTL elapsed and the data was purged |

            The last four are terminal.
        expiresAt:
          type:
            - string
            - 'null'
        statusUrl:
          type: string
        files:
          type: array
          items:
            $ref: '#/components/schemas/V1RedactRunFilesItems'
        file:
          $ref: '#/components/schemas/V1RedactRunFile'
        error:
          $ref: '#/components/schemas/V1RedactRunError'
          description: >-
            Why the run failed. Present whenever `status` is `failed`, and only
            then.


            `code` is the stable, snake_case reason (`input_unavailable`,
            `parse_failed`, …); `message` is the human-readable detail. Per-file
            and per-step failures are also reported in `files[].error` and, for
            a pipeline, `steps[].error`.
        metadata:
          type: object
          additionalProperties:
            description: Any type
        tasks:
          type: array
          items:
            $ref: '#/components/schemas/V1RedactRunTasksItems'
          description: >-
            The human steps currently blocking the run. Present while `status`
            is `needs_input`.


            Each task has a `url` — a ready-made page you can send a person to —
            or you can drive it yourself through `GET` and `POST
            /v1/runs/{id}/task`. E-signature runs never carry `tasks[]`: their
            signing links are signer-held secrets, so use `envelopeUrl` instead.
        output:
          $ref: '#/components/schemas/V1RedactRunOutput'
          description: >-
            The redacted files. Present once `status` is `processed`.


            `files[]` holds the new documents — `file` is an alias of the first
            for single-file runs — each with a signed download link. `entities`
            tallies what was removed per category, and `skipped` counts
            documents that contained nothing to redact and so produced no new
            file.
      required:
        - object
        - id
        - status
        - expiresAt
        - statusUrl
        - files
      title: V1RedactRun
    V1RedactPostResponsesContentApplicationJsonSchemaCode:
      type: string
      enum:
        - rate_limited
      title: V1RedactPostResponsesContentApplicationJsonSchemaCode
    RedactRequestTooManyRequestsError:
      type: object
      properties:
        code:
          $ref: >-
            #/components/schemas/V1RedactPostResponsesContentApplicationJsonSchemaCode
        message:
          type: string
        retryable:
          type: boolean
        requestId:
          type: string
        docUrl:
          type: string
      required:
        - code
        - message
        - retryable
        - requestId
      title: RedactRequestTooManyRequestsError
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

```

## Examples

### Example 1



**Request**

```json
{
  "file": {
    "url": "https://example.com/documents/confidential_report.pdf"
  }
}
```

**Response**

```json
{
  "object": "redact_run",
  "id": "d9f1a2b3-4c5d-678e-9f01-23456789abcd",
  "status": "queued",
  "expiresAt": "2024-07-01T12:00:00Z",
  "statusUrl": "https://api.cloudraker.com/v1/runs/d9f1a2b3-4c5d-678e-9f01-23456789abcd/status",
  "files": [
    {
      "id": "f1e2d3c4-b5a6-7890-cdef-1234567890ab",
      "name": "confidential_report_redacted.pdf",
      "status": "pending",
      "error": ""
    }
  ],
  "file": {
    "id": "f1e2d3c4-b5a6-7890-cdef-1234567890ab",
    "name": "confidential_report_redacted.pdf",
    "status": "pending",
    "error": ""
  },
  "error": {
    "code": "",
    "message": ""
  },
  "metadata": {},
  "tasks": [
    {
      "id": "task_1234567890abcdef",
      "title": "Review redaction results",
      "url": "https://app.cloudraker.com/runs/d9f1a2b3-4c5d-678e-9f01-23456789abcd/tasks/task_1234567890abcdef"
    }
  ],
  "output": {
    "files": [
      {
        "id": "f1e2d3c4-b5a6-7890-cdef-1234567890ab",
        "name": "confidential_report_redacted.pdf",
        "url": "https://storage.cloudraker.com/files/f1e2d3c4-b5a6-7890-cdef-1234567890ab/download"
      }
    ],
    "file": {
      "id": "f1e2d3c4-b5a6-7890-cdef-1234567890ab",
      "name": "confidential_report_redacted.pdf",
      "url": "https://storage.cloudraker.com/files/f1e2d3c4-b5a6-7890-cdef-1234567890ab/download"
    },
    "entities": {},
    "skipped": 0
  }
}
```

**SDK Code**

```python
import requests

url = "https://api.cloudraker.com/v1/redact"

payload = { "file": { "url": "https://example.com/documents/confidential_report.pdf" } }
headers = {
    "Authorization": "Bearer <token>",
    "Content-Type": "application/json"
}

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

print(response.json())
```

```javascript
const url = 'https://api.cloudraker.com/v1/redact';
const options = {
  method: 'POST',
  headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
  body: '{"file":{"url":"https://example.com/documents/confidential_report.pdf"}}'
};

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://api.cloudraker.com/v1/redact"

	payload := strings.NewReader("{\n  \"file\": {\n    \"url\": \"https://example.com/documents/confidential_report.pdf\"\n  }\n}")

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

	req.Header.Add("Authorization", "Bearer <token>")
	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://api.cloudraker.com/v1/redact")

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

request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n  \"file\": {\n    \"url\": \"https://example.com/documents/confidential_report.pdf\"\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://api.cloudraker.com/v1/redact")
  .header("Authorization", "Bearer <token>")
  .header("Content-Type", "application/json")
  .body("{\n  \"file\": {\n    \"url\": \"https://example.com/documents/confidential_report.pdf\"\n  }\n}")
  .asString();
```

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

$client = new \GuzzleHttp\Client();

$response = $client->request('POST', 'https://api.cloudraker.com/v1/redact', [
  'body' => '{
  "file": {
    "url": "https://example.com/documents/confidential_report.pdf"
  }
}',
  'headers' => [
    'Authorization' => 'Bearer <token>',
    'Content-Type' => 'application/json',
  ],
]);

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

```csharp
using RestSharp;

var client = new RestClient("https://api.cloudraker.com/v1/redact");
var request = new RestRequest(Method.POST);
request.AddHeader("Authorization", "Bearer <token>");
request.AddHeader("Content-Type", "application/json");
request.AddParameter("application/json", "{\n  \"file\": {\n    \"url\": \"https://example.com/documents/confidential_report.pdf\"\n  }\n}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
```

```swift
import Foundation

let headers = [
  "Authorization": "Bearer <token>",
  "Content-Type": "application/json"
]
let parameters = ["file": ["url": "https://example.com/documents/confidential_report.pdf"]] as [String : Any]

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

let request = NSMutableURLRequest(url: NSURL(string: "https://api.cloudraker.com/v1/redact")! 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()
```

### Example 2



**Request**

```json
{
  "file": {
    "url": "https://example.com/documents/confidential_report.pdf"
  }
}
```

**Response**

```json
{
  "object": "redact_run",
  "id": "d9f1a2b3-4c5d-678e-9f01-23456789abcd",
  "status": "queued",
  "expiresAt": "2024-07-01T12:00:00Z",
  "statusUrl": "https://api.cloudraker.com/v1/runs/d9f1a2b3-4c5d-678e-9f01-23456789abcd/status",
  "files": [
    {
      "id": "f1e2d3c4-b5a6-7890-cdef-1234567890ab",
      "name": "confidential_report_redacted.pdf",
      "status": "pending",
      "error": ""
    }
  ],
  "file": {
    "id": "f1e2d3c4-b5a6-7890-cdef-1234567890ab",
    "name": "confidential_report_redacted.pdf",
    "status": "pending",
    "error": ""
  },
  "error": {
    "code": "",
    "message": ""
  },
  "metadata": {},
  "tasks": [
    {
      "id": "task_1234567890abcdef",
      "title": "Review redaction results",
      "url": "https://app.cloudraker.com/runs/d9f1a2b3-4c5d-678e-9f01-23456789abcd/tasks/task_1234567890abcdef"
    }
  ],
  "output": {
    "files": [
      {
        "id": "f1e2d3c4-b5a6-7890-cdef-1234567890ab",
        "name": "confidential_report_redacted.pdf",
        "url": "https://storage.cloudraker.com/files/f1e2d3c4-b5a6-7890-cdef-1234567890ab/download"
      }
    ],
    "file": {
      "id": "f1e2d3c4-b5a6-7890-cdef-1234567890ab",
      "name": "confidential_report_redacted.pdf",
      "url": "https://storage.cloudraker.com/files/f1e2d3c4-b5a6-7890-cdef-1234567890ab/download"
    },
    "entities": {},
    "skipped": 0
  }
}
```

**SDK Code**

```python
import requests

url = "https://api.cloudraker.com/v1/redact"

payload = { "file": { "url": "https://example.com/documents/confidential_report.pdf" } }
headers = {
    "Authorization": "Bearer <token>",
    "Content-Type": "application/json"
}

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

print(response.json())
```

```javascript
const url = 'https://api.cloudraker.com/v1/redact';
const options = {
  method: 'POST',
  headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
  body: '{"file":{"url":"https://example.com/documents/confidential_report.pdf"}}'
};

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://api.cloudraker.com/v1/redact"

	payload := strings.NewReader("{\n  \"file\": {\n    \"url\": \"https://example.com/documents/confidential_report.pdf\"\n  }\n}")

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

	req.Header.Add("Authorization", "Bearer <token>")
	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://api.cloudraker.com/v1/redact")

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

request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n  \"file\": {\n    \"url\": \"https://example.com/documents/confidential_report.pdf\"\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://api.cloudraker.com/v1/redact")
  .header("Authorization", "Bearer <token>")
  .header("Content-Type", "application/json")
  .body("{\n  \"file\": {\n    \"url\": \"https://example.com/documents/confidential_report.pdf\"\n  }\n}")
  .asString();
```

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

$client = new \GuzzleHttp\Client();

$response = $client->request('POST', 'https://api.cloudraker.com/v1/redact', [
  'body' => '{
  "file": {
    "url": "https://example.com/documents/confidential_report.pdf"
  }
}',
  'headers' => [
    'Authorization' => 'Bearer <token>',
    'Content-Type' => 'application/json',
  ],
]);

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

```csharp
using RestSharp;

var client = new RestClient("https://api.cloudraker.com/v1/redact");
var request = new RestRequest(Method.POST);
request.AddHeader("Authorization", "Bearer <token>");
request.AddHeader("Content-Type", "application/json");
request.AddParameter("application/json", "{\n  \"file\": {\n    \"url\": \"https://example.com/documents/confidential_report.pdf\"\n  }\n}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
```

```swift
import Foundation

let headers = [
  "Authorization": "Bearer <token>",
  "Content-Type": "application/json"
]
let parameters = ["file": ["url": "https://example.com/documents/confidential_report.pdf"]] as [String : Any]

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

let request = NSMutableURLRequest(url: NSURL(string: "https://api.cloudraker.com/v1/redact")! 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()
```