Skip to content

Create Hive

Description

This operation creates a new hive.

Method

POST

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]

where:

Argument                Description
[hive-name] A name to assign to a newly created hive.

Request Headers

None.

Request Body

None.

Response Body

None.

Example

The example below creates a new hive and names it groceryStore.

curl --location --request POST "https://xxxx.backendless.app/api/hive/groceryStore"

where:

Argument                Description
groceryStore The name of the new hive to create in the system.

Codeless Reference

management_api_create_hive

where:

Argument                Description
name Name for the new hive.

The example below creates a new hive with a name "groceryStore":

management_api_example_create_hive