Console Counter No Response

If you can, please make ‘Dispatch’ Counter values as 0. Thanks.

How can I edit value of counters without having to add the codes in my android application? Please guide. Thanks.

Hello, @Pranav_Patel.

You can edit counters using rest API. Please look into this article: Overview - Backendless REST API Documentation

Best Regards, Nikita.

Where is REST console for Counters? I can see it for all the tables. I don’t see the option for Counters.

Hello, @Pranav_Patel.

You cannot do this with REST console.

  1. You need to use something different programms for it. Such as Postman, Insomnia, Postcode, etc.
  2. Additionally, you can use our sdk for creating this requests.
  3. Also you can use UI-Builder for this task.

Best Regards, Nikita.

All the options suggested are time consuming and impractical, if for some reason the counters have to be manually updated. Its been more than a month and the issue is still not resolved. I was told the ticket had critical priority! Please resolve the issue as soon as possible.

Thanks

The task has a critical status. And when there are any changes on this ticket, our team will let you know about it.

1 Like

Hello @Pranav_Patel

the issue with your application has been fixed, please check if everything is ok

1 Like

Hi Backendless Team,
Thanks for the help guys. Its been restored to the way it was before. Does standard SQL query search work on this tab? If you have a way to search for counters name in this tab, please share it.

Again, thanks for the help.

Hello @Pranav_Patel

it does not support sql. You can not search by value, but you can search by name using glob-style pattern:

  • h?llo matches hello, hallo and hxllo
  • h*llo matches hllo and heeeello
  • h[ae]llo matches hello and hallo, but not hillo
  • h[^e]llo matches hallo, hbllo, … but not hello
  • h[a-b]llo matches hallo and hbllo

For example

1 Like

Thanks Sergey.