Rating request

The rating request card lets you send a five star rating request to the user.

Grab the value behind the stars

The number behind the star is stored in the conversation object with the rating property. It can be used in a filter or a custom component.

Filter

Custom component

def main(data):
rating = data['conversation']['rating']

Last updated