List S3 buckets
Returns a list of S3 buckets.
Query Parameters
- limit int64
Limits the size of the response on each page to the specified number of items.
- start string
Sets the page number used to browse the collection. Pages are indexed starting from 1 (i.e.,
?start=1
). - filter string
Narrows down the results to only the items that satisfy the filter criteria. The following table lists the supported filter fields for this resource and the filter conditions that can be applied on those fields:
Field Filter Condition Description environment_id $eq The Clumio-assigned ID of the AWS environment. name $contains, $in The AWS-assigned name of this resource to conditionalize on. For example, ?filter={"name":{"$contains":"dev"}}
retrieves all S3 buckets with "dev" in their name.?filter={"name":{"$in":["prod", "dev"]}} retrieves only S3 buckets with names that exactly match "dev" or "prod"
account_native_id
Deprecated$eq This field will be deprecated. Use bucket_matcher filter instead.
The AWS-assigned ID of the AWS account. For example,
?filter={"account_native_id":{"$eq":"789901323485"}}
aws_region
Deprecated$eq, $in This field will be deprecated. Use bucket_matcher filter instead.
The AWS region of a given account to which this resource belongs. For example,
?filter={"aws_region":{"$eq":"us-east-1"}}
is_deleted $eq,$in The deletion status of the bucket. Set to "true" to retrieve deleted buckets. For example, ?filter={"is_deleted":{"$eq":true}}
?filter={"is_deleted":{"$in":["true","false"]}}
tags.id $all The Clumio-assigned ID(s) of AWS tag(s) applied to this resource. For example, ?filter={"tags.id":{"$all":["c764b152-5819-11ea-bb9f-b2e1c9a040ad","c764abb6-5819-11ea-bb9f-b2e1c9a040ad"]}}
retrieves all S3 buckets that are associated with the 2 AWS tags identified by these IDs. If multiple tags are specified, all of them must be applied to the same S3 bucket.aws_tag
Deprecated$in, $all This field will be deprecated. Use bucket_matcher filter instead.
Denotes the AWS tags to conditionalize on. For example,
?filter={"aws_tag":{"$in":[{"key":"Environment", "value":"Prod"}, {"key":"Hello", "value":"World"}]}}
excluded_aws_tag
Deprecated$all This field will be deprecated. Use bucket_matcher filter instead.
Denotes the AWS tags to conditionalize against, that assets cannot have. For example,
?filter={"excluded_aws_tag":{"$all":[{"key":"Environment", "value":"Prod"}, {"key":"Hello", "value":"World"}]}}
organizational_unit_id $in Denotes the organizational unit IDs that can own the assets that are returned. For example, ?filter={"organizational_unit_id":{"$in":["c764b152-5819-11ea-bb9f-b2e1c9a040ad","c764abb6-5819-11ea-bb9f-b2e1c9a040ad"]}}
asset_id $in Denotes the asset IDs that the results will be constrained to, with other filters still applied. For example, ?filter={"asset_id":{"$in":["c764b152-5819-11ea-bb9f-b2e1c9a040ad","c764abb6-5819-11ea-bb9f-b2e1c9a040ad"]}}
event_bridge_enabled $eq The AWS EventBridge status for the S3 bucket required for S3 continuous backup. For example, ?filter={"event_bridge_enabled":{"$eq":true}}
is_versioning_enabled $eq The AWS Version status for the S3 bucket. For example, ?filter={"is_versioning_enabled":{"$eq":true}}
is_encryption_enabled $eq The AWS Encryption status for the S3 bucket. For example, ?filter={"is_encryption_enabled":{"$eq":true}}
is_replication_enabled $eq The AWS Replication status for the S3 bucket. For example, ?filter={"is_replication_enabled":{"$eq":true}}
is_supported $eq The Clumio supported status for the S3 bucket. For example, ?filter={"is_supported":{"$eq":true}}
is_active $eq The Clumio status for the S3 bucket - whether its information has been updated within the last 5 days. For example, ?filter={"is_active":{"$eq":true}}
protection_method $eq, $in The applied protection method for the S3 bucket. Returns if any protection group is protected by the specified protection method. For example, ?filter={"protection_method":{"$eq":"securevault"}}
Possible values include: securevault, backtrack, none
For more information about filtering, refer to the Filtering section of this guide.
- bucket_matcher string
The bucket_matcher query parameter receives an expression to query the bucket.
This field is an expression to match s3 buckets. Search for buckets that match the conditions in the expression.
For example,
?bucket_matcher={"aws_tag":{"$eq":{"key":"key1", "value":"val1"}},"aws_account_native_id":{"$eq":"account"},"aws_region":{"$eq":"us-west-2"}}
The following formulas are supported.
Denotes the properties to conditionalize on. For
$eq
,$not_eq
,$contains
and$not_contains
a single element is provided:{'$eq':{'key':'Environment', 'value':'Prod'}}
. For all other other operations, a list is provided:{'$in':[{'key':'Environment','value':'Prod'}, {'key':'Hello', 'value':'World'}]}
.Field Rule Condition Description aws_tag $eq, $not_eq, $contains, $not_contains, $all, $not_all, $in, $not_in Denotes the AWS tag(s) to be exactly equal to the specified value. {"aws_tag":{"$eq":{"key":"Environment", "value":"Prod"}}}
aws_account_native_id $eq, $in Denotes the AWS account to be exactly equal to the specified value. {"aws_account_native_id":{"$eq":"111111111111"}}
account_native_id
Deprecated$eq, $in This field will be deprecated. Use aws_account_native_id instead.
Denotes the AWS account to be exactly equal to the specified value.
{"account_native_id":{"$eq":"111111111111"}}
aws_region $eq, $in Denotes the AWS region to be exactly equal to the specified value. {"aws_region":{"$eq":"us-west-2"}}
- 200
- default
Success
- application/api.clumio.aws-s3-buckets=v1+json
- Schema
- Example (from schema)
Schema
_embedded object
Embedded responses related to the resource.
items object[]
A collection of requested items.
_embedded objectEmbedded responses related to the resource.
_links object
URLs to pages related to the resource.
_self object
The HATEOAS link to this resource.
href stringThe URI for the referenced operation.
templated booleanDetermines whether the "href" link is a URI template. If set to
true
, the "href" link is a URI template.type stringThe HTTP method to be used with the "href" link for the referenced operation.
account_native_id stringThe AWS-assigned ID of the account associated with the S3 bucket.
aws_region stringThe AWS region associated with the S3 bucket.
bucket_size_bytes_breakdown object
The total size breakdown of S3 buckets in bytes per storage class. This parameter aggregates relevant fields from cloudwatch_metrics > size_bytes_per_storage_class
glacier_deep_archive_storage_bytes int64Size of Glacier Deep Archive Storage in bytes.
glacier_flexible_retrieval_storage_bytes int64Size of Glacier Flexible Retrieval Storage in bytes.
glacier_instant_retrieval_storage_bytes int64Size of Glacier Instant Retrieval Storage in bytes.
intelligent_tiering_storage_bytes int64Size of Intelligent-Tiering Storage objects in bytes.
one_zone_ia_storage_bytes int64Size of OneZone-IA Storage in bytes.
reduced_redundancy_storage_bytes int64Size of Reduced Redundancy Storage in bytes.
standard_ia_storage_bytes int64Size of Standard-IA Storage in bytes.
standard_storage_bytes int64Size of Standard Storage in bytes.
cloudwatch_metrics object
The Cloudwatch metrics of the bucket.
average_object_size_bytes doubleThe average size of object in bucket.
average_object_size_bytes_time date-timeTimestamp when average size of the bucket is calculated.
object_count int64Number of objects in bucket.
object_count_retrieved_time date-timeTimestamp when CloudWatch reported the bucket object count.
size_bytes int64Size of bucket in bytes.
size_bytes_per_storage_class object
The size breakdown in bytes with timestamps of a bucket per storage class.
deep_archive_object_overhead int64Size of Deep Archive Object Overhead in bytes.
deep_archive_object_overhead_retrieved_time date-timeTimestamp when CloudWatch reported the Deep Archive Object Overhead size.
deep_archive_s3_object_overhead int64Size of Deep Archive S3 Object Overhead in bytes.
deep_archive_s3_object_overhead_retrieved_time date-timeTimestamp when CloudWatch reported the Deep Archive S3 Object Overhead size.
deep_archive_staging_storage int64Size of Deep Archive Staging Storage objects in bytes.
deep_archive_staging_storage_retrieved_time date-timeTimestamp when CloudWatch reported the Deep Archive Staging Storage objects size.
deep_archive_storage int64Size of Deep Archive Storage objects in bytes.
deep_archive_storage_retrieved_time date-timeTimestamp when CloudWatch reported the Deep Archive Storage objects size.
glacier_instant_retrieval_storage int64Size of Glacier Instant Retrieval Storage objects in bytes.
glacier_instant_retrieval_storage_retrieved_time date-timeTimestamp when CloudWatch reported the Glacier Instant Retrieval Storage objects size.
glacier_object_overhead int64Size of Glacier Object Overhead in bytes.
glacier_object_overhead_retrieved_time date-timeTimestamp when CloudWatch reported the Glacier Object Overhead size.
glacier_s3_object_overhead int64Size of Glacier S3 Object Overhead in bytes.
glacier_s3_object_overhead_retrieved_time date-timeTimestamp when CloudWatch reported the Glacier S3 Object Overhead size.
glacier_staging_storage int64Size of Glacier Staging Storage objects in bytes.
glacier_staging_storage_retrieved_time date-timeTimestamp when CloudWatch reported the Glacier Staging Storage objects size.
glacier_storage int64Size of Glacier Storage objects in bytes.
glacier_storage_retrieved_time date-timeTimestamp when CloudWatch reported the Glacier Storage objects size.
intelligent_tiering_aa_storage int64Size of Intelligent-Tiering AA Storage objects in bytes.
intelligent_tiering_aa_storage_retrieved_time date-timeTimestamp when CloudWatch reported the Intelligent-Tiering AA Storage objects size.
intelligent_tiering_aia_storage int64Size of Intelligent-Tiering AIA Storage objects in bytes.
intelligent_tiering_aia_storage_retrieved_time date-timeTimestamp when CloudWatch reported the Intelligent-Tiering AIA Storage objects size.
intelligent_tiering_daa_storage int64Size of Intelligent-Tiering DAA Storage objects in bytes.
intelligent_tiering_daa_storage_retrieved_time date-timeTimestamp when CloudWatch reported the Intelligent-Tiering DAA Storage objects size.
intelligent_tiering_fa_storage int64Size of Intelligent-Tiering FA Storage objects in bytes.
intelligent_tiering_fa_storage_retrieved_time date-timeTimestamp when CloudWatch reported the Intelligent-Tiering FA Storage objects size.
intelligent_tiering_ia_storage int64Size of Intelligent-Tiering IA Storage objects in bytes.
intelligent_tiering_ia_storage_retrieved_time date-timeTimestamp when CloudWatch reported the Intelligent-Tiering IA Storage objects size.
one_zone_ia_size_overhead int64Size of OneZone IA Overhead in bytes.
one_zone_ia_size_overhead_retrieved_time date-timeTimestamp when CloudWatch reported the OneZone IA Overhead size.
one_zone_ia_storage int64Size of OneZone IA Storage objects in bytes.
one_zone_ia_storage_retrieved_time date-timeTimestamp when CloudWatch reported the OneZone IA Storage objects size.
reduced_redundancy_storage int64Size of Reduced Redundancy Storage objects in bytes.
reduced_redundancy_storage_retrieved_time date-timeTimestamp when CloudWatch reported the Reduced Redundancy Storage objects size.
standard_ia_object_overhead int64Size of Standard IA Object Overhead in bytes.
standard_ia_object_overhead_retrieved_time date-timeTimestamp when CloudWatch reported the Standard IA Object Overhead size.
standard_ia_size_overhead int64Size of Standard IA Overhead in bytes.
standard_ia_size_overhead_retrieved_time date-timeTimestamp when CloudWatch reported the Standard IA Overhead size.
standard_ia_storage int64Size of Standard IA Storage objects in bytes.
standard_ia_storage_retrieved_time date-timeTimestamp when CloudWatch reported the Standard IA Storage objects size.
standard_storage int64Size of Standard Storage objects in bytes.
standard_storage_retrieved_time date-timeTimestamp when CloudWatch reported the Standard Storage objects size.
size_bytes_retrieved_time date-timeTimestamp when CloudWatch reported the bucket size.
creation_timestamp stringThe timestamp of when the bucket was created. Represented in RFC-3339 format.
encryption_setting object
The AWS encryption output of the bucket.
server_side_encryption_configuration object
Specifies the default server-side-encryption configuration.
rules object[]
Container for information about a particular server-side encryption configuration rule.
apply_server_side_encryption_by_default object
Describes the default server-side encryption to apply to new objects in the bucket.
kms_master_key_id stringAWS Key Management Service (KMS) customer AWS KMS key ID to use for the default encryption.
sse_algorithm stringServer-side encryption algorithm to use for the default encryption.
bucket_key_enabled booleanSpecifies whether Amazon S3 should use an S3 Bucket Key with server-side encryption using KMS (SSE-KMS) for new objects in the bucket.
environment_id stringThe Clumio-assigned ID of the AWS environment associated with the S3 bucket.
event_bridge_enabled booleanThe EventBridge enablement state for the S3 bucket.
id stringThe Clumio-assigned ID of the bucket.
is_encryption_enabled booleanThe Encryption enablement state for the S3 bucket.
is_replication_enabled booleanThe Replication enablement state for the S3 bucket.
is_versioning_enabled booleanThe Versioning enablement state for the S3 bucket.
last_backtrack_sync_timestamp stringTime of the last S3 Backtrack sync in RFC-3339 format.
last_backup_timestamp stringTime of the last backup in RFC-3339 format.
last_continuous_backup_timestamp stringTime of the last continuous backup in RFC-3339 format.
name stringThe AWS-assigned name of the bucket.
object_count int64Number of objects in bucket.
organizational_unit_id stringThe Clumio-assigned ID of the organizational unit associated with the S3 bucket.
protection_group_count int64Protection group count reflects how many protection groups are linked to this bucket.
replication_setting object
The AWS replication output of the bucket.
replication_configuration object
A container for replication rules with a maximum size of 2MB and a maximum of 1,000 rules.
role stringThe Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role that Amazon S3 assumes when replicating objects.
rules object[]
Specifies which Amazon S3 objects to replicate and where to store the replicas.
delete_marker_replication object
Specifies whether Amazon S3 replicates delete markers.
status stringIndicates whether to replicate delete markers.
destination object
Specifies information about where to publish analysis or configuration results.
access_control_translation object
A container for information about access control for replicas.
owner stringSpecifies the replica ownership.
account stringDestination bucket owner account ID.
bucket stringThe Amazon Resource Name (ARN) of the bucket where you want Amazon S3 to store the results.
encryption_configuration object
Specifies encryption-related information for an Amazon S3 bucket that is a destination for replicated objects.
replica_kms_key_id stringSpecifies the ID (Key ARN or Alias ARN) of the customer managed AWS KMS key stored in AWS Key Management Service (KMS) for the destination bucket.
metrics object
A container specifying replication metrics-related settings enabling replication metrics and events.
event_threshold object
A container specifying the time value for S3 Replication Time Control (S3 RTC) and replication metrics EventThreshold.
minutes int64Contains an integer specifying time in minutes.
status stringSpecifies whether the replication metrics are enabled.
replication_time object
A container specifying S3 Replication Time Control (S3 RTC) related information.
status stringSpecifies whether the replication time is enabled.
time object
A container specifying the time value for S3 Replication Time Control (S3 RTC) and replication metrics EventThreshold.
minutes int64Contains an integer specifying time in minutes.
storage_class stringThe storage class to use when replicating objects.
existing_object_replication object
Configuration to replicate existing source bucket objects.
status stringSpecifies whether the existing object replication is enabled.
filter object
A filter that identifies the subset of objects to which the replication rule applies.
and object
A container for specifying rule filters. The filters determine the subset of objects to which the rule applies.
prefix stringAn object key name prefix that identifies the subset of objects to which the rule applies.
tags object[]
An array of tags containing key and value pairs.
key stringName of the object key.
value stringValue of the tag.
prefix stringAn object key name prefix that identifies the subset of objects to which the rule applies.
tag object
A container of a key value name pair.
key stringName of the object key.
value stringValue of the tag.
id stringA unique identifier for the rule (max 255 characters).
priority int64The priority indicates which rule has precedence whenever two or more replication rules conflict.
source_selection_criteria object
A container that describes additional filters for identifying the source objects that you want to replicate.
replica_modifications object
A filter that you can specify for selection for modifications on replicas.
status stringSpecifies whether Amazon S3 replicates modifications on replicas.
sse_kms_encrypted_objects object
A container for filter information for the selection of S3 objects encrypted with AWS KMS.
status stringSpecifies whether Amazon S3 replicates objects created with server-side encryption using an AWS KMS key stored in AWS Key Management Service.
status stringSpecifies whether the rule is enabled.
size_bytes int64Size of bucket in bytes.
tags object[]
The AWS tags applied to the S3 bucket.
id stringThe Clumio-assigned ID of the AWS tag.
key stringThe AWS-assigned tag key.
key_id stringThe Clumio-assigned ID of the AWS key.
value stringThe AWS-assigned tag value.
versioning_setting object
The AWS versioning output of the bucket.
mfa_delete stringSpecifies whether MFA delete is enabled in the bucket versioning configuration.
status stringThe versioning state of the bucket.
_links object
URLs to pages related to the resource.
_first object
The HATEOAS link to the first page of results.
href stringThe URI for the referenced operation.
templated booleanDetermines whether the "href" link is a URI template. If set to
true
, the "href" link is a URI template.type stringThe HTTP method to be used with the "href" link for the referenced operation.
_last object
The HATEOAS link to the last page of results.
href stringThe URI for the referenced operation.
templated booleanDetermines whether the "href" link is a URI template. If set to
true
, the "href" link is a URI template.type stringThe HTTP method to be used with the "href" link for the referenced operation.
_next object
The HATEOAS link to the next page of results.
href stringThe URI for the referenced operation.
templated booleanDetermines whether the "href" link is a URI template. If set to
true
, the "href" link is a URI template.type stringThe HTTP method to be used with the "href" link for the referenced operation.
_prev object
The HATEOAS link to the previous page of results.
href stringThe URI for the referenced operation.
templated booleanDetermines whether the "href" link is a URI template. If set to
true
, the "href" link is a URI template.type stringThe HTTP method to be used with the "href" link for the referenced operation.
_self object
The HATEOAS link to this resource.
href stringThe URI for the referenced operation.
templated booleanDetermines whether the "href" link is a URI template. If set to
true
, the "href" link is a URI template.type stringThe HTTP method to be used with the "href" link for the referenced operation.
- current_count int64
The number of items listed on the current page.
- limit int64
The maximum number of items displayed per page in the response.
- start string
The page number used to get this response. Pages are indexed starting from 1 (i.e.,
"start": "1"
). - total_count int64
The total number of items, summed across all pages.
- total_pages_count int64
The total number of pages of results.
{
"_embedded": {
"items": [
{
"_embedded": {},
"_links": {
"_self": {
"href": "string",
"templated": true,
"type": "string"
}
},
"account_native_id": "string",
"aws_region": "string",
"bucket_size_bytes_breakdown": {
"glacier_deep_archive_storage_bytes": 0,
"glacier_flexible_retrieval_storage_bytes": 0,
"glacier_instant_retrieval_storage_bytes": 0,
"intelligent_tiering_storage_bytes": 0,
"one_zone_ia_storage_bytes": 0,
"reduced_redundancy_storage_bytes": 0,
"standard_ia_storage_bytes": 0,
"standard_storage_bytes": 0
},
"cloudwatch_metrics": {
"average_object_size_bytes": 0,
"average_object_size_bytes_time": "2025-08-28",
"object_count": 0,
"object_count_retrieved_time": "2025-08-28",
"size_bytes": 0,
"size_bytes_per_storage_class": {
"deep_archive_object_overhead": 0,
"deep_archive_object_overhead_retrieved_time": "2025-08-28",
"deep_archive_s3_object_overhead": 0,
"deep_archive_s3_object_overhead_retrieved_time": "2025-08-28",
"deep_archive_staging_storage": 0,
"deep_archive_staging_storage_retrieved_time": "2025-08-28",
"deep_archive_storage": 0,
"deep_archive_storage_retrieved_time": "2025-08-28",
"glacier_instant_retrieval_storage": 0,
"glacier_instant_retrieval_storage_retrieved_time": "2025-08-28",
"glacier_object_overhead": 0,
"glacier_object_overhead_retrieved_time": "2025-08-28",
"glacier_s3_object_overhead": 0,
"glacier_s3_object_overhead_retrieved_time": "2025-08-28",
"glacier_staging_storage": 0,
"glacier_staging_storage_retrieved_time": "2025-08-28",
"glacier_storage": 0,
"glacier_storage_retrieved_time": "2025-08-28",
"intelligent_tiering_aa_storage": 0,
"intelligent_tiering_aa_storage_retrieved_time": "2025-08-28",
"intelligent_tiering_aia_storage": 0,
"intelligent_tiering_aia_storage_retrieved_time": "2025-08-28",
"intelligent_tiering_daa_storage": 0,
"intelligent_tiering_daa_storage_retrieved_time": "2025-08-28",
"intelligent_tiering_fa_storage": 0,
"intelligent_tiering_fa_storage_retrieved_time": "2025-08-28",
"intelligent_tiering_ia_storage": 0,
"intelligent_tiering_ia_storage_retrieved_time": "2025-08-28",
"one_zone_ia_size_overhead": 0,
"one_zone_ia_size_overhead_retrieved_time": "2025-08-28",
"one_zone_ia_storage": 0,
"one_zone_ia_storage_retrieved_time": "2025-08-28",
"reduced_redundancy_storage": 0,
"reduced_redundancy_storage_retrieved_time": "2025-08-28",
"standard_ia_object_overhead": 0,
"standard_ia_object_overhead_retrieved_time": "2025-08-28",
"standard_ia_size_overhead": 0,
"standard_ia_size_overhead_retrieved_time": "2025-08-28",
"standard_ia_storage": 0,
"standard_ia_storage_retrieved_time": "2025-08-28",
"standard_storage": 0,
"standard_storage_retrieved_time": "2025-08-28"
},
"size_bytes_retrieved_time": "2025-08-28"
},
"creation_timestamp": "string",
"encryption_setting": {
"server_side_encryption_configuration": {
"rules": [
{
"apply_server_side_encryption_by_default": {
"kms_master_key_id": "string",
"sse_algorithm": "string"
},
"bucket_key_enabled": true
}
]
}
},
"environment_id": "string",
"event_bridge_enabled": true,
"id": "string",
"is_encryption_enabled": true,
"is_replication_enabled": true,
"is_versioning_enabled": true,
"last_backtrack_sync_timestamp": "string",
"last_backup_timestamp": "string",
"last_continuous_backup_timestamp": "string",
"name": "string",
"object_count": 0,
"organizational_unit_id": "string",
"protection_group_count": 0,
"replication_setting": {
"replication_configuration": {
"role": "string",
"rules": [
{
"delete_marker_replication": {
"status": "string"
},
"destination": {
"access_control_translation": {
"owner": "string"
},
"account": "string",
"bucket": "string",
"encryption_configuration": {
"replica_kms_key_id": "string"
},
"metrics": {
"event_threshold": {
"minutes": 0
},
"status": "string"
},
"replication_time": {
"status": "string",
"time": {
"minutes": 0
}
},
"storage_class": "string"
},
"existing_object_replication": {
"status": "string"
},
"filter": {
"and": {
"prefix": "string",
"tags": [
{
"key": "string",
"value": "string"
}
]
},
"prefix": "string",
"tag": {
"key": "string",
"value": "string"
}
},
"id": "string",
"priority": 0,
"source_selection_criteria": {
"replica_modifications": {
"status": "string"
},
"sse_kms_encrypted_objects": {
"status": "string"
}
},
"status": "string"
}
]
}
},
"size_bytes": 0,
"tags": [
{
"id": "string",
"key": "string",
"key_id": "string",
"value": "string"
}
],
"versioning_setting": {
"mfa_delete": "string",
"status": "string"
}
}
]
},
"_links": {
"_first": {
"href": "string",
"templated": true,
"type": "string"
},
"_last": {
"href": "string",
"templated": true,
"type": "string"
},
"_next": {
"href": "string",
"templated": true,
"type": "string"
},
"_prev": {
"href": "string",
"templated": true,
"type": "string"
},
"_self": {
"href": "string",
"templated": true,
"type": "string"
}
},
"current_count": 0,
"limit": 0,
"start": "string",
"total_count": 0,
"total_pages_count": 0
}
Error
- application/json
- Schema
- Example (from schema)
Schema
errors object[]
A list of errors encountered during runtime.
error_code uint32error_message stringThe reason for the error.
{
"errors": [
{
"error_code": 0,
"error_message": "string"
}
]
}