---
title: "Test C3-Partner Center connectivity"
slug: "test-c3-partner-center-connectivity"
updated: 2024-10-27T00:32:35Z
published: 2024-10-27T00:32:35Z
canonical: "docs.cspcontrolcenter.com/test-c3-partner-center-connectivity"
---

> ## Documentation Index
> Fetch the complete documentation index at: https://docs.cspcontrolcenter.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Test C3-Partner Center connectivity

Get a list of active plans in C3 instance

## URL

GET [https://contoso-prod-api.azurewebsites.net/api/PartnerConsent/testPartnerCenterConnectivity](https://contoso-prod-api.azurewebsites.net/api/api/PartnerConsent/testPartnerCenterConnectivity)

## Request headers

| Key | Value |
| --- | --- |
| **Authorization** | Bearer <access_token> |
| **Content-Type** | Application/json |

## Request body

The request doesn’t require any parameters / body

## Response body

An example response for the request to get active customers is as follows:

```json
{
    "OperationType": null,
    "Status": "Success",
    "RequestCorrelationID": "1c17e049-7a21-4b35-b06c-8ae010bd2fc7",
    "ErrorMessage": null,
    "ErrorDetail": null,
    "Data": {
        "CompanyName": "Spektra Systems LLC",
        "CountryCode": "US",
        "State": "WA",
        "City": "Redmond",
        "AddressLine1": "8201 164th AVE NE",
        "AddressLine2": "Suite 200",
        "PostalCode": "98052-7615",
        "FirstName": "Spektra",
        "LastName": "Systems",
        "ContactPhoneNumber": "1-234-567-7890",
        "CurrencyCode": "USD"
    }
}
```

Here is the explanation for the properties in the response (JSON)

| Property | Description |
| --- | --- |
| **OperationType** | Can be ignored |
| **Status** | Indicates the status of the request. Possible values – Success / Error |
| **RequestCorrelationID** | Internal ID generated by C3 for correspondence for troubleshooting issues, if any. |
| **ErrorMessage** | Message in case the request runs into an error during processing |
| **ErrorDetail** | Additional detail related to the error in case there is an error while processing the request |
| **Data** | Output type and explanation \| Output \| Meaning \| \| --- \| --- \| \| **Details retrieved from partner center** \| Connectivity is up & running \| \| **No Details** \| Connectivity is broken \| |
| Output | Meaning |
| **Details retrieved from partner center** | Connectivity is up & running |
| **No Details** | Connectivity is broken |
