POST
/
v1
/
accounts
/
{account_id}
/
nodePoolBindings
curl --request POST \
  --url https://api.fireworks.ai/v1/accounts/{account_id}/nodePoolBindings \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "principal": "<string>"
}'
{
  "accountId": "<string>",
  "clusterId": "<string>",
  "nodePoolId": "<string>",
  "createTime": "2023-11-07T05:31:56Z",
  "principal": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

account_id
string
required

The Account Id

Body

application/json
The properties of the node pool binding being created.
principal
string
required

The principal that is allowed use the node pool. This must be the email address of the user.

Response

200 - application/json
A successful response.
principal
string
required

The principal that is allowed use the node pool. This must be the email address of the user.

accountId
string

The account ID that this binding is associated with.

clusterId
string

The cluster ID that this binding is associated with.

nodePoolId
string

The node pool ID that this binding is associated with.

createTime
string

The creation time of the node pool binding.