# Update Trusted By entry

URL: /en/docs/api/v1/trusted-by/id/patch
Last Updated: 2026-07-30T21:15:30.374Z

## Description
No description available.

## Available Actions
- Execute PATCH request
- View request parameters
- View response schema
- Get code examples
- Navigate to related topics
- View step-by-step instructions
- Get best practices

## Content
### PATCH /api/v1/trusted-by/{id}

**Update Trusted By entry**

Modify Trusted By metadata. Badge uploads occur through `/api/v1/trusted-by/{id}/badge`.

**Authentication:** Bearer token (`Authorization: Bearer <token>`)

**Path parameters:**

| Name | Type | Required | Description |
|---|---|---|---|
| `id` | string | Yes | Trusted By ID |

**Request body** (`application/json`) - required:

- `title` (string): Optional customer or brand display name. Send an empty string to clear it.
- `url` (string (uri)): Optional HTTP(S) URL for the logo card. Send an empty string to clear it.
- `order` (integer): Optional display order. Lower values appear first.

Example (partial_update):

```json
{
  "title": "Acme Corp",
  "url": "https://acme.example.com",
  "order": 10
}
```

**Responses:**

- `200` - Updated Trusted By entry
  - `success` (boolean)
  - `data` (TrustedBy (TrustedBy))

  Example (updated):
  
  ```json
  {
  "success": true,
  "data": {
    "id": "customer-123",
    "title": "Acme Corp",
    "badge": "https://directus.example.com/assets/customer-badge",
    "badge_asset_id": "customer-badge",
    "url": "https://acme.example.com",
    "order": 10,
    "tenant": "tenant-123",
    "user_created": "user-123",
    "date_created": "2026-05-01T10:05:00.000Z",
    "user_updated": "user-456",
    "date_updated": "2026-06-01T08:30:00.000Z"
  }
}
  ```
- `400` - Validation error

  Example (missing_identity):
  
  ```json
  {
  "error": "trusted_by_identity_required"
}
  ```
- `401` - Unauthorized
- `403` - Forbidden - requesting tenant does not own the Trusted By entry
- `404` - Trusted By entry not found
- `500` - Internal server error

**Code samples:**

cURL:

```bash
curl -X PATCH "https://app.orbiqhq.com/api/v1/trusted-by/customer-123" \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "title": "Acme Corp",
    "url": "https://acme.example.com",
    "order": 10
  }'
```

