Skip to content

Get a pool

Request

Get a pool.

Security
ApiKeyAuth
Path
poolIdinteger, (int32)required

ID of the pool

curl -i -X GET \
  'https://api-workflow.treasuredata.com/api/pools/{poolId}' \
  -H 'Authorization: TD1 <YOUR_TOKEN_HERE>'

Responses

Pool

Bodyapplication/json
concurrencyLimitinteger, (int32), >= 1required

Maximum number of concurrent attempts that can run in this pool. Total concurrency limit of all pools cannot exceed the account's concurrency limit.

Example:10
defaultbooleanrequired

Whether the pool is the default pool.

Example:true
idstring, >= 1required

ID of the pool.

Example:"42"
namestring, [ 1 .. 256 ] charactersrequired

Name of the pool. This name must be unique within the account.

Example:"activation"
Response
{ "concurrencyLimit": 10, "default": true, "id": "42", "name": "activation" }