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

> Get the details of the companies whose resources the API client can access. The details include IDs, names, and their associated issuer name.

## Parameters {#parameters}

No parameters required.

### Sample request {#sample-request}

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

## Response {#response}

|    Name    |                  Description                   | Required |     Type      |
|------------|------------------------------------------------|----------|---------------|
| id         | ID of the company, up to 22 character maximum. | Yes      | Integer, long |
| name       | Name of the company.                           | Yes      | Alphanumeric  |
| issuerName | Name of the issuer.                            | 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>
    <getCompaniesResponse
      xmlns=http://mastercard.com/sd/pc/service
      xmlns:ns2=http://mastercard.com/sd/pc2/service>
      <company>
        <id>493069</id>
        <name>Company</name>
        <issuerName>WORLD BANK</issuerName>
      </company>
      <company>
        <id>1296587</id>
        <name>Company_IOS</name>
        <issuerName>Issuer</issuerName>
      </company>
      <errorMessage
        xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance xsi:nil="true"/>
    </getCompaniesResponse>
  </soapenv:Body>
</soapenv:Envelope>
```

