Pricing plans define how paid offerings are priced and charged for, and result in subscriptions.
Rate limit: 900 requests per minute.
string
RequiredOK
1
2
3
curl --request GET \
--url 'https://api.atlassian.com/commerce/api/v2/pricing-plans/{id}' \
--header 'Accept: application/json'
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"id": "<string>",
"updatedAt": 2154,
"description": "<string>",
"offeringId": "<string>",
"productId": "<string>",
"offeringName": "<string>",
"ari": "<string>",
"primaryCycle": {
"name": "<string>",
"interval": "DAY",
"count": 2154
},
"status": "DRAFT",
"currency": "USD",
"type": "<string>",
"maxNewQuoteDate": 2154,
"activatedWithReason": "DEFAULT_PRICING",
"items": [
{
"cycle": {
"name": "<string>",
"interval": "DAY",
"count": 2154
},
"chargeType": "METERED",
"chargeElement": "<string>",
"tiersMode": "GRADUATED",
"tiers": [
{
"floor": 2154,
"ceiling": 2154,
"unitAmount": 42,
"flatAmount": 47
}
],
"prorateOnUsageChange": "CREATE_PRORATIONS"
}
],
"version": 2154,
"relationships": [
{
"fromPricingPlanKey": "<string>",
"toPricingPlanKey": "<string>",
"type": "ADVANTAGE_PRICING",
"metadata": {}
}
],
"supportedBillingSystems": [
"HAMS"
],
"activationDate": 2154
}
List all pricing plans under the provided offering key
Rate limit: 600 requests per minute.
string
Requiredstring
array<string>
integer
string
OK
1
2
3
curl --request GET \
--url 'https://api.atlassian.com/commerce/api/v2/offerings/{offeringId}/pricing-plans' \
--header 'Accept: application/json'
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"values": [
{
"id": "<string>",
"updatedAt": 2154,
"description": "<string>",
"offeringId": "<string>",
"productId": "<string>",
"offeringName": "<string>",
"ari": "<string>",
"primaryCycle": {
"name": "<string>",
"interval": "DAY",
"count": 2154
},
"status": "DRAFT",
"currency": "USD",
"type": "<string>",
"maxNewQuoteDate": 2154,
"activatedWithReason": "DEFAULT_PRICING",
"items": [
{
"cycle": {
"name": "<string>",
"interval": "DAY"
},
"chargeType": "METERED",
"chargeElement": "<string>",
"tiersMode": "GRADUATED",
"tiers": [
{
"floor": 2154
}
],
"prorateOnUsageChange": "CREATE_PRORATIONS"
}
],
"version": 2154,
"relationships": [
{
"fromPricingPlanKey": "<string>",
"toPricingPlanKey": "<string>",
"type": "ADVANTAGE_PRICING",
"metadata": {}
}
],
"supportedBillingSystems": [
"HAMS"
],
"activationDate": 2154
}
],
"nextId": "<string>"
}
Rate this page: