Including your Partner Solution ID in your Integration {#isv-partner-starter-partn-id}
======================================================================================

Include your Partner Solution ID with transaction requests to identify all requests going through your integration. Including your Partner Solution ID in your integration enables `Cybersource` to accurately track your transaction volumes, and provide monitoring, servicing and troubleshooting.  
Currently, this functionality and reporting is only available from within `Cybersource` Payments APIs by including your Partner Solution ID within the body of the payloads.  
To integrate with `Cybersource` payments APIs, include your assigned Partner Solution ID with every payments API request you make in your integration, both in the test and production environments.  
Validate that your Partner Solution ID has been passed and captured properly.  
This example show you how to include the Partner Solution ID value in the clientReferenceInformation.partner.solutionId when you send a request:

```
{
  "clientReferenceInformation": {
    "code": "TC50171_3",
    "partner": {
      "solutionId": "6hah804t"
    }
  }
}
```

Example: Including a Partner Solution ID in a Request {#isv-partner-starter-reqs-id-ex}
=======================================================================================

This example shows how to include a Partner Solution ID in a payment request. The Partner Solution ID is included in the `clientReferenceInformation.partner.solutionId` field. Request with a Partner Solution ID

```
{
  "clientReferenceInformation": {
    "code": "TC50171_3",
    "partner": {
      "solutionId": "6hah804t"
    }
  },
  "paymentInformation": {
    "card": {
      "number": "4111111111111111",
      "expirationMonth": "12",
      "expirationYear": "2031"
    }
  },
  "orderInformation": {
    "amountDetails": {
      "totalAmount": "102.21",
      "currency": "USD"
    },
    "billTo": {
      "firstName": "John",
      "lastName": "Doe",
      "address1": "1 Market St",
      "locality": "san francisco",
      "administrativeArea": "CA",
      "postalCode": "94105",
      "country": "US",
      "email": "test@cybs.com",
      "phoneNumber": "4158880000"
    }
  }
}
```

