# quoteApprove

Approve a quote

**Scope required:** standard:write

```graphql
mutation quoteApprove ($id: ID!, $notes: String!) {
  quoteApprove (id: $id, notes: $notes) {
      errors
  }
}
```

## Arguments

```json
{
  "id": "456123",
  "notes": ""
}
```

| Name  | Type   | Description |
| ----- | ------ | ----------- |
| id    | ID     |             |
| notes | String |             |

## Response

| Name   | Type   | Description |
| ------ | ------ | ----------- |
| errors | String |             |
