Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • FirebaseUDR
  • FirebaseErrorResult

FirebaseUDR

When the Firebase agent receives a FirebaseUDR, it sends out a request with data to each device in the pushTokens list.

...

Info
titleExample - Generated message from Body and Title fields

APL:

Code Block
consume {    
	FirebaseUDR firebaseUDR = udrCreate(FirebaseUDR);
	firebaseUDR.title = "DigitalRoute";
	firebaseUDR.message ="Every bit counts.";
	list <string> myList = listCreate(string, "key","key");
	firebaseUDR.pushTokens= myList;
	udrRoute(firebaseUDR);
}


FirebaseErrorUDR

If the Firebase agent receives a response from Firebase that contains an error, this will be logged and a FireBaseErrorUDR will be sent back to the workflow.

...