Seats and Subscription

Retrieve information details on your subscription and its usage accross Talend Apps.

Endpoints

Global security

These security schemes apply to the entire API

Security scheme

This scheme can be referenced across the API

Public
Bearer authentification
Bearer authentication
Name Description

Subscription

Contains information related to token consumption, engines statuses and seat usages
Object
Name Description Type Attributes and examples
startDate Subscription start date string Required
endDate Subscription end date string Required
licenseType License type string Required
applications array of string Required
Datatype details
Type Description Attributes and examples
array Available applications
string List of applications
supportLevel Level of support string Required
tokensStatus TokensStatus Required
enginesStatus array of EngineStatus Required
Datatype details
Type Description Attributes and examples
array Give number of engines used by type
EngineStatus
seats array of Seat Required
Datatype details
Type Description Attributes and examples
array Seats information by application
Seat

EngineStatus

Information about engine status
Object
Name Description Type Attributes and examples
type Engine type string Required
consumed Number of engines used by type integer Required
INT32

TokensStatus

Information about tokens
Object
Name Description Type Attributes and examples
total Number of token allowed for the account integer Required
INT32
consumed Number of token currently consumed by the account integer Required
INT32

Seat

Seat information
Object
Name Description Type Attributes and examples
application Name of application string Required
maxUsers Maximum of users allowed to use the application integer Required
INT32
currentUsers Count of users currently using the application integer Required
INT32

Get account subscription information

GET /account/subscription

Retrieve details of your Talend license, such as:

  • Number of tokens you acquired
  • How they are allocated for various usage scenarios
  • Your current subscription options

Response

200Status 200
Status 200
Body
Subscription
401Status 401
Unauthorized
403Status 403
Forbidden - no permissions to access resource
404Status 404
Subscription not found
500Status 500
Internal server error
back to top