- Getting Started
- Endpoints
- Authentication
- Customers
- Exemptions
- Transactions
- Files
- Address Validation
- Sales Tax Rates
- Vat Validation
- Special Features
Get Partnerships
GET
/v1/partnership
Request
Header Params
Content-Type
string
optional
Example:
application/json
Accept
string
optional
Example:
application/json
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/v1/partnership' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json'
Responses
🟢200Success
application/json
Body
tenantId
string
required
partnerName
string
required
supportedReferrals
array[object (Referral) {4}]
required
tenantId
string
required
name
string
required
partnershipStatus
string
required
timestamps
object (TimestampsDto)
required
Example
{
"tenantId": "string",
"partnerName": "string",
"supportedReferrals": [
{
"tenantId": "string",
"name": "string",
"partnershipStatus": "string",
"timestamps": {
"createdDate": "string",
"updatedDate": "string"
}
}
]
}
Modified at 2025-03-31 13:24:00