Bucket Detail
Retrieve the details of a given bucket by key.
Note: The list_utilizations_gt
attribute is available with Runscope API v1 or higher. For more information, see the Bucket Utilization API documentation.
Test Result Detail v1
curl 'https://api.runscope.com/v1/buckets/<bucket_key>' \
-H 'Authorization: Bearer <access_token>'
Test Result Detail v0
curl 'https://api.runscope.com/buckets/<bucket_key>' \
-H 'Authorization: Bearer <access_token>'
Bucket Detail Response Attributes
Attributes
-
auth_token
stringBucket auth token if set, otherwise this value is
null
-
created_at
integerTime stamp for bucket creation
-
default
booleanTrue if this bucket is the 'default' for a team. Default buckets cannot be deleted
-
key
stringThe unique identitifer used to address a bucket
-
name
stringThe name of this bucket as displayed in your dashboard
-
team
objectAn object describing the team this bucket belongs to. Includes the name and uuid of the team
Show/Hide Child Attributes
-
name
stringThe name of this team
-
uuid
stringThe unique identifier for this team
-
-
verify_ssl
booleanTrue if this bucket is configured to verify ssl for requests made to it
-
list_utilizations_gt
integerList the percentage of concurrent tests running in each location that meets or exceeds a certain threshold. If unspecified, the default threshold is 85%.
-
is_private
booleanTrue if the bucket is private, and false if public
-
are_secrets_enabled
booleanTrue if secrets are enabled in the bucket
-
tests_count
integerNumber of tests in the bucket
Response200 OK
{
"meta": {
"status": "success"
},
"data": {
"name": "new-RB",
"key": "ez97w2r9wgzw",
"auth_token": null,
"default": false,
"verify_ssl": true,
"created_at": 1754570554,
"is_private": false,
"are_secrets_enabled": false,
"tests_count": 72,
"team": {
"name": "tester_runscope_team",
"id": "ad216122-ee73-4b2f-8ff3-b1ce14b1fd52"
},
"custom_emails": [],
"collections_url": "https://stageapi.runscope.com/buckets/ez97w2r9wgzw/collections",
"messages_url": "https://stageapi.runscope.com/buckets/ez97w2r9wgzw/stream",
"tests_url": "https://stageapi.runscope.com/buckets/ez97w2r9wgzw/tests",
"trigger_url": "https://stageapi.runscope.com/radar/bucket/3a144e5c-074a-43ac-8398-07ea3163a0b8/trigger",
"is_schedule_test_paused": false
},
"error": null
}