# Get Suppliers
source: https://developer.mastercard.com/iccp/documentation/05_api_reference/soap_api/configuration-details/getsuppliers/index.md

> Get a list of suppliers to whom payments can be made. The supplier ID identifies the supplier in the submit purchase request calls.
Note: The request is not applicable to ICMP.

## Parameter {#parameter}

|   Name    |                     Description                      | Required |     Type      |
|-----------|------------------------------------------------------|----------|---------------|
| companyId | The ID of your company, up to 22 characters maximum. | Yes      | Integer, long |

### Sample Request {#sample-request}

```xml
<soapenv:Envelope xmlns:ser="http://mastercard.com/sd/pc2/service" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><soapenv:Header></soapenv:Header>
   <soapenv:Body>
      <ser:getSuppliersRequest>
         <ser:companyId>427521</ser:companyId>
      </ser:getSuppliersRequest>
   </soapenv:Body>
</soapenv:Envelope>
```

## Response {#response}

| Name |                    Description                    | Required |     Type     |
|------|---------------------------------------------------|----------|--------------|
| id   | The id of a supplier, up to 22 characters maximum | Yes      | Numeric      |
| name | The name of a supplier                            | Yes      | Alphanumeric |

#### Sample Response {#sample-response}

```xml
<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope
  xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
  <soapenv:Body>
    <ns2:getSuppliersResponse
      xmlns="http://mastercard.com/sd/pc/service"
      xmlns:ns2="http://mastercard.com/sd/pc2/service">
      <ns2:supplier>
        <ns2:id>14100</ns2:id>
        <ns2:name>Sandbox Supplier</ns2:name>
      </ns2:supplier>
      <ns2:errorMessage
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
      </ns2:getSuppliersResponse>
    </soapenv:Body>
  </soapenv:Envelope>
```

