This can be used to read out the client's currently set tariff, including all available modules and their functions contained in the tariff.
GET
/tenant-info/tariffLast modified: 25 days ago
Request
Header Params
X-Integration-Name
string
required
Integration name
Example:
API Documentation
X-Integration-Provider
string
required
Integration provider
Example:
cobra GmbH
X-Cobra-TenantId
string
required
Tenant ID
Example:
12e39e53-ece1-4d8d-8958-e782de1dbef0
X-Integration-Contact
string
optional
Integration contact
Example:
info@cobra.de
Request samples
Responses
Success(200)
Not Found(404)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
data
object (Tariff)
optional
id
string <uuid>
optional
Tariff id
Example:
95e95b33-6e9c-402d-beae-b0d06c74b199
displayName
string | null
optional
Tariff display name
Example:
Event Premium
version
integer <int32>
optional
Tariff version
Example:
1
buyableFrom
string <date-time> | null
optional
Indicates the date from which the tariff can be booked
Example:
2023-01-10T15:06:25.355Z
buyableUntil
string <date-time> | null
optional
Indicates the date up to which the tariff can be booked
Example:
2024-01-10T15:06:25.355Z
capabilities
object (Capabilities)
optional
supportLevel
string | null
optional
Support level
Example:
EMailAndPhone
supportsCustomDomain
boolean
optional
Indicates whether a customer-specific url is supported
Example:
false
priceIdMonthly
string | null
optional
Monthly price id
Example:
price_1N5UDqJMSRDQKrqkqIllKKRG
priceIdAnnual
string | null
optional
Annual price id
Example:
price_1NDj13JMSRDQKrqkhxe5m4RF
applicationFeeRate
integer <int32>
optional
Application fee rate
Example:
5
message
string | null
optional
metaData
object (ResponseMetaData)
optional
totalResults
integer <int32>
optional
responseTimeStamp
string <date-time>
optional
statusCode
integer <int32>
optional
Example
{
"id": "95e95b33-6e9c-402d-beae-b0d06c74b199",
"displayName": "Event Premium",
"version": 1,
"buyableFrom": "1923-08-01T00:00:00",
"buyableUntil": "2026-12-03T10:28:16.7765481+00:00",
"capabilities": {
"people360": {
"addressValidationAndGeo": false
},
"eventPro": {
"eventWebsiteCount": 3,
"maxParticipantsPerMonth": 400,
"acceptOnlinePayments": true,
"acceptCoupons": true,
"supportCollectiveTickets": false,
"customizeEmailTemplates": false
},
"usermanagement": {
"maxUserCount": 999999
},
"integration": {
"webhooksActive": true,
"webhookSubscriptionCount": 100
},
"touchpoints": {
"active": true
},
"auth": {
"authenticateWithBiometry": false,
"singleSignOn": false
},
"ai": null,
"eap": null,
"forms": null
},
"supportLevel": "EMailAndPhone",
"supportsCustomDomain": false,
"priceIdMonthly": "price_1N5UDqJMSRDQKrqkqIllKKRG",
"priceIdAnnual": "price_1NDj13JMSRDQKrqkhxe5m4RF",
"applicationFeeRate": 0
}
Last modified: 25 days ago