# Queries / Vendor Connections

# Vendor Connections

**Query**
## vendorConnection — Returns [VendorConnection](/documentation/Objects/Vendor-Connections#VendorConnection)

**Scopes required:** manage_vendor_connections

| Arguments | Type | Description |
| --- | --- | --- |
| id | [ID!](/documentation/Types/UUID#UUID) | The ID of the Vendor connection |

**Example Query**

```graphql
query GetVendorConnection($id: ID!) {
    vendorConnection(id: $id) {
        id,
        name,
        senderCode
    }
}

# Example variables
{
    "id": "<ID>"
}
```

**Query**
## vendorConnections — Returns [[VendorConnection]](/documentation/Objects/Vendor-Connections#VendorConnection)

**Scopes required:** manage_vendor_connections

**Example Query**

```graphql
query GetVendorConnections {
    vendorConnections {
        id,
        name,
        senderCode
    }
}
```