Skip to content

Get Hive Names

Description

This operation retrieves all hive names.

Method

GET

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

Request Headers

None.

Request Body

None.

Response Body

An array of hive names as string values. If there are no hives, then an empty array is returned.

Example

The example below returns all hive names stored in the system.

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

Codeless Reference

management_api_get_hive_names

Returns a list containing hive names.

Consider the following list of hives:

management_api_example_get_hive_names_2

The example below retrieves all hive names:

management_api_example_get_hive_names

After running the Codeless Logic, the operation returns a list containing all existing hives:

hive_management_api_get_hive_names_3