A product is a container for all catalog definitions of a product that Atlassian is making available to the market.
List all products
Rate limit: 600 requests per minute.
string
integer
string
OK
1
2
3
curl --request GET \
--url 'https://api.atlassian.com/commerce/api/v2/products' \
--header 'Accept: application/json'
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
"values": [
{
"id": "<string>",
"name": "<string>",
"ari": "<string>",
"updatedAt": 2154,
"supportedBillingSystems": [
"HAMS"
],
"version": 2154,
"status": "DRAFT"
}
],
"nextId": "<string>"
}
Rate limit: 900 requests per minute.
string
RequiredOK
1
2
3
curl --request GET \
--url 'https://api.atlassian.com/commerce/api/v2/products/{id}' \
--header 'Accept: application/json'
1
2
3
4
5
6
7
8
9
10
11
{
"id": "<string>",
"name": "<string>",
"ari": "<string>",
"updatedAt": 2154,
"supportedBillingSystems": [
"HAMS"
],
"version": 2154,
"status": "DRAFT"
}
Rate limit: 600 requests per minute.
string
Requiredstring
OK
1
2
3
curl --request GET \
--url 'https://api.atlassian.com/commerce/api/v1/product-ignore-rule/{productId}/promotion-type/partner' \
--header 'Accept: application/json'
1
2
3
{
"ignored": true
}
Rate limit: 600 requests per minute.
string
OK
1
2
3
curl --request GET \
--url 'https://api.atlassian.com/commerce/api/v1/product-ignore-rule/promotion-type/partner' \
--header 'Accept: application/json'
1
2
3
4
5
{
"productIds": [
"<string>"
]
}
Rate this page: