Create a collect request
Permissions required: Initiate Staking and Unstaking
In staking, the “collect” operation is the action of claiming inactive unstaked amount back to the available balance by moving them from the staking protocol or pool into a personal wallet. Once collected, these amounts are fully under wallet’s owner control.
NOTE: This endpoint is under development.
idempotentId into the body before computing the signature.
Authorizations
An API key associated with a security role
Headers
A hex-encoded Ed25519 signature of timestamp_epoch_seconds + uppercase(http_method) + request_path + request_body.
Construction example:
toHex( ed25519Sign( signing_key, '{}{}{}{}'.format(timestamp_epoch_seconds, toUpper(httpMethod), httpRequestPath, httpBody) ) )
^[0-9A-Fa-f]{128,160}$Current timestamp, represented as unix epoch seconds
Body
A string representing a type of crypto-asset, which usually corresponds to the crypto asset's ticker symbol.
Use /asset-types to list all of the supported asset types for your organization.
"ETH"
An object representing a resource capable of sending funds.
Construction example:
{ "id":"1c920f4241b78a1d483a29f3c24b6c4c", "type":"WALLET" }
Unique identifier of the staking position
"9bc4c2ccba8192b64d41b46d1770abe9ddbb430b85de3fe73e1b4f21336bc48a"
An amount of a crypto-asset to unstake, without units. The unit is derived from the asset type.
"32"
An optional string providing more context to this transaction. It will be visible on the Anchorage Digital iOS app and will not be published to the blockchain.
"Internal ID: #12838927347"
A client-provided unique ID for idempotent requests
128"12838927347"
Specifies whether to collect the full amount, which overrides any provided amount if set to true.
Response
Successfully initiated a collect transaction
{
"transactionId": "8696144cca28a634c05858d00e51191408498a7808a837fc4645b4b6997dde09"
}
