Rename Account
POSThttps://api.gemini.com/v1/account/rename
A Master or Account level API key can rename an account within the group.
POST
curl --request POST \
--url https://api.gemini.com/v1/account/rename \
--header 'Content-Type: application/json' \
--header 'X-GEMINI-APIKEY: <string>' \
--header 'X-GEMINI-PAYLOAD: <string>' \
--header 'X-GEMINI-SIGNATURE: <string>' \
--data '
{
"request": "/v1/account/rename",
"nonce": "<nonce>",
"account": "my-exchange-account",
"newName": "My Exchange Account New Name",
"newAccount": "my-exchange-account-new-name"
}
'Roles
The API key you use to access this endpoint can be either a Master or Account level API key and must have the Administrator role assigned. See Roles for more information.
Headers
Request Body
Responses
An element containing the updated name of the account.
Last modified on