Hi, I've been trying to create/update the "AWS S3 Bulk Exports Integrations". Initially I tried using /api/v2/integrations but its request body schema contains only the skeleton of the integration. What I mean by that is, it doesn't have schemas for properties and credentials to add to the integration. I did found schemas for properties and credentials, but I don't see a key-value pair to include the values for the property and credentials part.
The schemas,
"properties": {
"s3bucket": {
"type": "string",
"title": "S3 Bucket",
"description": "The s3 bucket used to store exported files.",
"sensitive": false,
"confirm": true
}
},
"credentials": {
"AmazonWebServicesARN": {
"required": true,
"title": "Amazon Role ARN",
"credentialTypes": [
"amazonWebServicesARN"
]
}
}
So, I'd like to know if adding/updating the values for S3 bucket property and AWS ARN credential part is possible or not through API?