Rename Hive¶
Description¶
This operation renames a hive.
Method¶
PUT
Endpoint URL¶
Important
Make sure to replace xxxx in the domain name in the request specification below to the one assigned to your application.
https://xxxx.backendless.app/api/hive/[hive-name]?newName=[new-name]
where:
Argument | Description |
---|---|
[hive-name] |
Name of a hive which is renamed. |
[new-name] |
A new name to assign to a hive. |
Request Headers¶
None.
Request Body¶
None.
Response Body¶
None.
Example¶
The example below renames groceryStore
hive to furnitureStore
.
curl --location --request PUT "https://xxxx.backendless.app/api/hive/groceryStore?newName=furnitureStore"
where:
Argument | Description |
---|---|
groceryStore |
Name of a hive to rename. |
furnitureStore |
New name to assign to the hive. |
Codeless Reference¶
where:
Argument | Description |
---|---|
current name |
Name of a hive to rename. |
new name |
New name to assign to a hive. |
The example below renames a hive from groceryStore
to furnitureStore
: