The GET/interactions/external-storage
endpoint enables you to list external storage items within the account.
Panel |
---|
borderColor | #eeeeee |
---|
bgColor | white |
---|
titleColor | white |
---|
borderWidth | 1 |
---|
titleBGColor | #D34204 |
---|
borderStyle | solid |
---|
title | In this page |
---|
|
|
Insert excerpt |
---|
| _ExcerptAPICloudNextGen |
---|
| _ExcerptAPICloudNextGen |
---|
nopanel | true |
---|
|
Header parameters in Requests (Interaction Content Export API) apply to this endpoint.
Authorization scopes supported:
Scope | Access granted |
---|
interaction-content:read | Entire endpoint |
Parameters
The endpoint accepts no parameters.
Request
Request to list external storage items
Code Block |
---|
language | powershell |
---|
theme | Midnight |
---|
|
curl -L -X GET "https://***.api.cc.vonage.com/interaction-content-export/external-storage" \
-H "Authorization: Bearer <ACCESS_TOKEN>" \
-H "Accept: application/vnd.newvoicemedia.v1+json" |
Responses
Responses to the endpoint return the list of all external storage items within the account.
Successful response
For information about successful responses, see Success response code and parameters in Responses (Interaction Content Export API).
Example responses
Code Block |
---|
|
{
"externalStorages": [
{
"externalStorageId": "74137e23-9716-4e5c-ad92-36343c248282",
"storageProvider": "S3",
"credentials": {
"roleArn": "arn:aws:iam::account:role/role-name-with-path",
"region": "us-east-1",
"bucketName": "customer bucket"
}
}
]
} |
where:
externalStorageId
. The unique identifier of the external storage item.storageProvider
. External storage provider.credentials.
Used to authenticate Vonage Contact Center to transfer data to the external storage provider. The format of this object varies between different storage providers. For information, see Create an external storage item.
Insert excerpt |
---|
| _ExcerptRunInPostman |
---|
| _ExcerptRunInPostman |
---|
nopanel | true |
---|
|