Bird Services

Bird services are a set of APIs that allow you to interact with the Bird service.

Pre-requisite: The user has to be signed in to perform the following operations.

Get the bird details

To get the birds, The following method can be used:

  • spaceId (required): The space ID of the device.
  • birdId (required): The bird ID.
InstaVision.birdServices.getBird(
  onSuccess = { bird ->
    // The bird objects
  },
  onError = { error ->
    // The error object contains the error code and message
  }
)