Retrieve Device Registration¶
Backendless server returns information about device registration with the API documented below. The input parameter of the API is deviceId
- the value returned by the device registration API.
Method:
¶
Future<DeviceRegistration> Backendless.messaging.getDeviceRegistration();
Return value:¶
An array with one object containing device registration details - An instance of the DeviceRegistration
class. Provides access to the following properties:
Argument | Description |
---|---|
deviceToken |
A token assigned by the push notification service provider (Google Cloud Messaging, Apple Push Notification Service, Microsoft Push Notification Service). |
deviceId |
A unique identification of the device registered to receive push notifications. |
os |
Operating system identifier |
osVersion |
Version of the operating system |
channels |
An array of Backendless messaging channels device is registered with. |
expiration |
A timestamp indicating when the device registration should expire. |
Errors:¶
The following errors may occur during the device registration API callThe following errors may occur during the device registration API call. See the Error Handling section for details on how to retrieve the error code when the server returns an error:
Error Code |
Description |
---|---|
5000 |
Unable to retrieve device registration - unknown device ID. |
Example¶
// do not forget to call Backendless.initApp in the app initialization code
Backendless.messaging.getDeviceRegistration().then((deviceRegistration) {
print("Result: $deviceRegistration");
});
Codeless Reference¶
Returns a list with one object containing device registration details. The object contains the following properties:
where:
Argument | Description |
---|---|
deviceToken |
A token assigned by the push notification service provider (Google Cloud Messaging, Apple Push Notification Service, Microsoft Push Notification Service). |
deviceId |
A unique identification of the device registered to receive push notifications. |
os |
Operating system identifier |
osVersion |
Version of the operating system |
channels |
An array of Backendless messaging channels device is registered with. |
expiration |
A timestamp indicating when the device registration should expire. |
The example below retrieves the device registration details: