Rate this page:
Privacy and Security details about apps.
Disclaimer: These APIs are not live yet and are provided for reference purposes only. The final APIs may subject to change and will be available in early February 2023.
GET /rest/2/addons/{addonKey}/privacy-and-security
Get the Privacy and Security info for the specified app. This resource requires authentication for "draft" form type.
string
The unique identifier for this app, for example "com.atlassian.confluence.plugins.confluence-questions".
string
Specifies the form type to be fetched. Possible values are "live" or "draft".
1 2 3
curl --request GET \
--url 'https://marketplace.atlassian.com/rest/2/addons/{addonKey}/privacy-and-security?formType={formType}' \
--header 'Accept: application/json'
Content type | Value |
---|---|
application/json |
PUT /rest/2/addons/{addonKey}/privacy-and-security
Create/Update the Privacy and Security info for the specified app. Possible actions are Save or Submit. This resource requires authentication.
string
The unique identifier for this app, for example "com.atlassian.confluence.plugins.confluence-questions".
string
Specifies the action to be taken with the form.
Valid values: save
, submit
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 55 56 57 58 59 60 61 62
curl --request PUT \
--url 'https://marketplace.atlassian.com/rest/2/addons/{addonKey}/privacy-and-security' \
--header 'Content-Type: application/json' \
--data '{
"trustInfo": {
"dataAccessAndStorage": {
"isSameDataProcessedAndStored": true,
"appProcessEUDOutsideAtlassian": true,
"typesOfDataAccessed": [
"<string>"
],
"appStoresEUDOutsideAtlassian": true,
"typesOfDataStored": [
"<string>"
]
},
"thirdPartyInformation": {
"isEndUserDataShared": true,
"dataSubprocessors": "<string>",
"thirdPartyDetails": [
{}
]
},
"logDetails": {
"logEndUserData": true,
"logProcessAndOrStoreEUDOutsideAtlassian": true,
"logEUDShareWithThirdParty": true,
"logsIntegralForAppFunctionality": true
},
"dataResidency": {
"isDataResidencySupported": "STORED_IN_ATLASSIAN_N_DR_SUPPORTED",
"countriesWhereEndUserDataStored": [
"<string>"
],
"realmMigrationSupported": true,
"inScopeDataTypes": [
"<string>"
]
},
"dataRetention": {
"isDataRetentionSupported": true,
"retentionDurationInDays": {},
"isCustomRetentionPeriodAllowed": true
},
"security": {
"securityContact": "<string>",
"publicSecurityPoliciesLink": "<string>",
"CAIQ": {},
"isDiskEncryptionSupported": true,
"compliantCertifications": [
"<string>"
]
},
"privacy": {
"privacyEnhancingTechniques": {},
"GDPR": {},
"CCPA": {},
"dataProcessingAgreement": {}
}
},
"action": "save"
}'
Privacy & Security information submitted/saved successfully.
A schema has not been defined for this response code.
DELETE /rest/2/addons/{addonKey}/privacy-and-security
Discards the draft version of Privacy and Security information for the specified app. This resource requires authentication.
string
The unique identifier for this app, for example "com.atlassian.confluence.plugins.confluence-questions".
1 2 3
curl --request DELETE \
--url 'https://marketplace.atlassian.com/rest/2/addons/{addonKey}/privacy-and-security' \
--header 'Accept: application/json'
Draft version of Privacy & Security information discarded successfully.
Content type | Value |
---|---|
application/json |
Rate this page: