Backendless Support - Latest posts https://support.backendless.com Latest posts Cloud code operation parameters missing options got it, thanks :+1:

]]>
https://support.backendless.com/t/cloud-code-operation-parameters-missing-options/20171#post_3 Mon, 16 Mar 2026 10:38:37 +0000 support.backendless.com-post-106941
Cloud code operation parameters missing options Hi @Jessica_Maree_Kancharla,

Try using the POST method. After that, the other data structures (including array ) will become available. Right now you only see string , boolean , and number because the interface limits the parameter types for the current method.

Regards,
Sergey

]]>
https://support.backendless.com/t/cloud-code-operation-parameters-missing-options/20171#post_2 Mon, 16 Mar 2026 08:15:12 +0000 support.backendless.com-post-106938
Cloud code operation parameters missing options


I’m only getting 3 options appear for the parameter data type: string, boolean, and number. There are usually more options than that. In this case I need an array. I get the full list of options on methods I’ve created previously but not on this new one.

My application id is: D3AEFCC3-94AD-4944-9AF0-C474EE2AD285

]]>
https://support.backendless.com/t/cloud-code-operation-parameters-missing-options/20171#post_1 Sat, 14 Mar 2026 11:49:19 +0000 support.backendless.com-post-106936
{"code":6007,"message":"The specified resource was not found","errorData":{}} Good question.

No, File Repository access does not need to be enabled for files to be publicly accessible. If a file is stored in the File Service and not restricted by permissions, it can be accessed directly via its URL.

The URL you shared:

https://backendlessappcontent.com/.../files/testCSV.csv

works because it is the direct Backendless file URL, which bypasses the custom domain.

Regarding the setting shown in your screenshot — the tooltip there mentions:

“This is the domain that will be used to generate URLs for the files uploaded to your Backendless File repository.”

This setting simply defines which domain Backendless uses when generating file URLs. It does not affect whether the file repository itself is accessible.

When using a custom domain, files are normally accessed through the File Service path, for example:

https://mydomain.com/api/files/testCSV.csv

If possible, could you check whether this URL works for you?

You can also review the custom domain setup here to make sure everything matches the expected configuration: Custom Domain

Regards,
Volodymyr

]]>
https://support.backendless.com/t/code-6007-message-the-specified-resource-was-not-found-errordata/20169#post_7 Fri, 13 Mar 2026 16:10:02 +0000 support.backendless.com-post-106935
{"code":6007,"message":"The specified resource was not found","errorData":{}} I can access this file -

https://backendlessappcontent.com/EEE25B20-17FA-97DD-FF29-EC45A5072A00/BD66F313-3FC1-47D5-A29F-CA496ED35636/files/testCSV.csv

I use to be able to access the file at mydomain.com/testCSV.csv.

This has stopped working in the past few days. I haven’t made any changes, which is the confusing part on my end.

TIm

]]>
https://support.backendless.com/t/code-6007-message-the-specified-resource-was-not-found-errordata/20169#post_6 Fri, 13 Mar 2026 15:26:14 +0000 support.backendless.com-post-106934
{"code":6007,"message":"The specified resource was not found","errorData":{}} Does file repo access need to be enabled?

]]>
https://support.backendless.com/t/code-6007-message-the-specified-resource-was-not-found-errordata/20169#post_5 Fri, 13 Mar 2026 14:48:40 +0000 support.backendless.com-post-106933
{"code":6007,"message":"The specified resource was not found","errorData":{}} Hello @Tim_Jones

Thanks for testing that — this helps narrow it down.

With a Backendless custom domain, files are typically accessed through the File Service path. Even if the file is located in the root folder of the File Service, the URL usually looks like this:

https://YourCustomDomain.com/api/files/filename.ext

Could you try accessing the file using that format and see if it works?

Since you mentioned that files can still be downloaded using the Backendless file URL, but anything accessed through the custom domain fails, the issue is likely related to the custom domain routing or configuration.

Could you please also confirm:

  1. The exact URL you are using when accessing the file through the custom domain.
  2. What response or error you receive (404, 403, redirect, etc.).
  3. Whether the domain still shows as active/verified in Manage → Custom Domain.

You can also double-check the setup steps here: Custom Domains

Regards,
Volodymyr

]]>
https://support.backendless.com/t/code-6007-message-the-specified-resource-was-not-found-errordata/20169#post_4 Fri, 13 Mar 2026 09:30:20 +0000 support.backendless.com-post-106932
{"code":6007,"message":"The specified resource was not found","errorData":{}} Thanks for the response, @Volodymyr_Ialovyi.

I’ve been testing and it seems related to accessing anything from the custom domain.

If a file is in the root, should I be able to access it at CustomDomain.com/filename.ext?

I uploaded a file to the root directory and cannot access it as described.

Tim

]]>
https://support.backendless.com/t/code-6007-message-the-specified-resource-was-not-found-errordata/20169#post_3 Thu, 12 Mar 2026 20:37:07 +0000 support.backendless.com-post-106931
{"code":6007,"message":"The specified resource was not found","errorData":{}} Hello @Tim_Jones

Thanks for the report! To help us investigate, could you clarify a few things:

  1. Steps to reproduce – Can you describe the exact sequence of actions that leads to the error? (e.g., trigger the plugin → call list2csv → open URL → error appears)

  2. File name / path – What is the name or path of the CSV file being generated? Does the error occur with any file, or only specific ones?

  3. Custom domain URL – What does the URL look like when you try to open the file through your custom domain? (You can redact sensitive parts)

  4. Screenshot clarification – In the screenshot you attached, which service/method is shown? Is it the list2csv call itself, or the subsequent file open/download step?

  5. Recent changes – Were there any changes on your end around the time this stopped working (domain settings, SSL certificate, etc.)?

The Backendless file URL still works, so the issue seems to be specific to the custom domain routing — any additional context would help narrow it down quickly.

Regards,
Volodymyr

]]>
https://support.backendless.com/t/code-6007-message-the-specified-resource-was-not-found-errordata/20169#post_2 Thu, 12 Mar 2026 10:31:45 +0000 support.backendless.com-post-106927
Google OAuth error Hello @Francis_Bagas

Thank you for reporting this issue. We investigated the error.

What happened:

The invalid_grant error from Google can occur for several reasons, but the most likely explanation in this case is that the same authorization code was sent to the server more than once. Google’s authorization codes are strictly
single-use — once a code is exchanged for an access token, any subsequent attempt to use the same code will be rejected with this error.

This typically happens when:

  • The user refreshes the browser page (F5) after the Google redirect
  • The login button is clicked more than once
  • Client-side retry logic re-sends the callback request

In any of these cases, the first request would succeed normally, but the second request would attempt to exchange the same code with Google and receive invalid_grant.

Recommendation:

Please ensure the OAuth callback is not being triggered multiple times. Preventing duplicate requests should resolve this issue.

Let us know if you have any further questions.

Regards,
Volodymyr

]]>
https://support.backendless.com/t/google-oauth-error/20166#post_4 Wed, 11 Mar 2026 17:28:39 +0000 support.backendless.com-post-106922
{"code":6007,"message":"The specified resource was not found","errorData":{}} I build a CSV file using the marketplace plugin list2csv method, and then open a new browser window to the created CSV, which triggered a download -

This as worked fine for months/years, but stopped working in the last few days or so. I can see the files from the console, and if I access the backendless link for the file, it gets downloaded. I can’t seem to access it through my custom domain any longer.

]]>
https://support.backendless.com/t/code-6007-message-the-specified-resource-was-not-found-errordata/20169#post_1 Wed, 11 Mar 2026 15:23:37 +0000 support.backendless.com-post-106921
Google OAuth error Hello @Francis_Bagas

Thank you for reporting this issue. The invalid_grant error typically occurs due to a temporary hiccup in the authorization exchange process between our servers and Google (e.g., an expired or accidentally duplicated authorization code).

We have escalated this to our team, and they will look into the issue to find out what went wrong.

In the meantime, could you or your client please try the following quick troubleshooting steps?

  1. Clear the browser cache and cookies, or try logging in via an Incognito/Private browsing window.
  2. Ensure that you only click the “Login with Google” button once, as double-clicking can sometimes invalidate the login code.

If the issue persists after trying this, please let us know. We will update you as soon as our team have more information!

Best regards,
Viktor

]]>
https://support.backendless.com/t/google-oauth-error/20166#post_2 Tue, 10 Mar 2026 17:16:25 +0000 support.backendless.com-post-106919
No "New Operation" possible for JS API service Great, thank you. I just discovered the “Quick Access” button for the first time :slight_smile:

]]>
https://support.backendless.com/t/no-new-operation-possible-for-js-api-service/20168#post_5 Tue, 10 Mar 2026 09:08:34 +0000 support.backendless.com-post-106918
Issue with scale plan Thank you Mark for the head’s up. I wish you luck with the FlowRunner project.

]]>
https://support.backendless.com/t/issue-with-scale-plan/20167#post_7 Tue, 10 Mar 2026 09:07:38 +0000 support.backendless.com-post-106917
No "New Operation" possible for JS API service The Cloud Code screen is the same as API Services under QUICK ACCESS:

]]>
https://support.backendless.com/t/no-new-operation-possible-for-js-api-service/20168#post_4 Mon, 09 Mar 2026 20:56:38 +0000 support.backendless.com-post-106916
Issue with scale plan Totally understand. Thank you for the additional context. Quick heads-up on a change that is coming so you can start making any architectural changes if needed - FlowRunner will be splitting from Backendless soon into a separate dedicated service. An announcement with more details is coming soon.

]]>
https://support.backendless.com/t/issue-with-scale-plan/20167#post_6 Mon, 09 Mar 2026 20:54:21 +0000 support.backendless.com-post-106915
Issue with scale plan Thanks Mark for the understanding and the thorough reply. Just so you understand, on our side this is an application designed to be used in a working environment (a local shop) with only a few interactions per day. The interactions are complex since they require uploading photos, OCR, AI analysis and user-correction, but it is designed to be handled in the span of 2-3 minutes (cutting their IT work down from 30 minutes and up to multiple hours). This means typically less than 1000 requests per day, but sometimes more than 50 per minute.

Since the benefit of a paid plan will be minimal compared to our allocated budget, we decided it’s better to hit those limits and catch up on work in following days since the load is rarely that high. In the long term, since we have close partners that actually do VPS hosting, we will have the bare-metal to host an instance of the BL Pro community edition, even if that would mean we will migrate flow runner work to API services or other.

]]>
https://support.backendless.com/t/issue-with-scale-plan/20167#post_5 Mon, 09 Mar 2026 20:50:14 +0000 support.backendless.com-post-106914
No "New Operation" possible for JS API service Hi Mark, thank you for your reply. Would you be able to point to how to navigate to “Cloud Code” via the web console?

I managed to reach it via the search navigation, but I feel like I’m missing a UI link to reach it more conveniently. Please advise.

]]>
https://support.backendless.com/t/no-new-operation-possible-for-js-api-service/20168#post_3 Mon, 09 Mar 2026 20:40:25 +0000 support.backendless.com-post-106913
No "New Operation" possible for JS API service Hi Maxime,

New operations can be added via a popup only for Codeless services. When you build a JS service, create a service and then using the Coding screen to build and deploy your service:

Regards,
Mark

]]>
https://support.backendless.com/t/no-new-operation-possible-for-js-api-service/20168#post_2 Mon, 09 Mar 2026 15:51:32 +0000 support.backendless.com-post-106912
Issue with scale plan Thank you for the detailed feedback - I can see how frustrating this experience has been, and I appreciate you walking through the full timeline. I want to make sure the full picture is clear, because the comparison between the free plan and Scale Fixed Tier 1 is more nuanced than it might appear.

You’re right that Tier 1 on Scale Fixed caps at 5 requests per minute, which is lower than the free plan’s 50 req/min burst limit. However, the free plan also has a hard limit of 1,000 API requests per day, along with other significant restrictions - 10 data tables, 15,000 database records, 1GB file storage, limited event handlers, and more. So while the free plan allows short bursts of higher throughput, it’s designed for development and prototyping, not for running a production app serving real users throughout the day. All of this information is published on our pricing page and in our documentation - we don’t hide anything about how the plans and tiers work.

I understand that $55/month (Tier 4, up to 50 req/min) may feel like a lot for a small cloud application. But if you consider what you’re getting - a managed database, file storage, business logic hosting, API infrastructure, UI Builder - and compare that to the cost of provisioning and maintaining your own server with equivalent capabilities, you might be surprised how quickly those costs add up and surpass that amount.

You mentioned setting up a self-hosted Backendless Pro instance as an alternative. You’re absolutely welcome to run the Backendless Community Edition for free, but I’d encourage you to go in with realistic expectations about hosting costs. Between compute, storage, networking, backups, and ongoing maintenance, things get expensive quickly in server-land. Unfortunately, we also have bills to pay to keep the platform running, and our pricing reflects the real cost of the infrastructure and services we provide.

Happy to help you analyze your usage and find the right tier if you’d like.

Regards,
Mark

]]>
https://support.backendless.com/t/issue-with-scale-plan/20167#post_4 Mon, 09 Mar 2026 15:33:16 +0000 support.backendless.com-post-106911
No "New Operation" possible for JS API service Hi all,

I’m trying to set up a JS-based API service to run a chronjob (once a week execution), similar to this guide: How to Backup Your Data Tables in Backendless | Backendless or How to Create a Cloud Code Timer in Backendless Console | Backendless

What I’m seeing when I create a new API service with JS is that there is no way to create an operation for the service in JS. Unlike Codeless, where I have a “New Operation” button, with JS I am stuck without being able to do anything.

For comparison:

]]>
https://support.backendless.com/t/no-new-operation-possible-for-js-api-service/20168#post_1 Mon, 09 Mar 2026 10:25:32 +0000 support.backendless.com-post-106910
Issue with scale plan In order to match the free plan, I would need to pay $55 per month, which is a lot for a small cloud application. Let alone the fact that I would like a higher API call limit per minute.


]]>
https://support.backendless.com/t/issue-with-scale-plan/20167#post_3 Sat, 07 Mar 2026 13:41:47 +0000 support.backendless.com-post-106909
Issue with scale plan The page not loading due to 429 errors:

]]>
https://support.backendless.com/t/issue-with-scale-plan/20167#post_2 Sat, 07 Mar 2026 13:40:31 +0000 support.backendless.com-post-106908
Issue with scale plan Hi all,

I just wanted to submit this complaint about the lowest-tier payed plan, which, from my understanding, is the Scale-Fixed plan, capped at Tier-1.

The main reason I wanted to upgrade was to increase limits from 50 requests per minute, and to remove the free-plan banner on the UI-builder web app.

The story of how I got here:

In January, I was burned pretty badly by subscribing to the scale variable plan. I didn’t realise that high levels of requests, that would happen while development, would push me into higher tiers. While I expected a bill of $15 per month, I ended up with a bill of $70. Thankfully the person I’m building the app for was happy to cover those costs, but from my side it felt very unfair.

I then switched to the Scale Fixed plan. The next day I realised I had messed up again, since I had an invoice of $22 come in, which meant I was paying more for one day than I would expect for an entire month. I quickly found out that I needed to cap the requests at “Tier 1” to limit unexpected price hikes. The app is not especially a high-usage app, and we can optimise further, so I left it like that.

Now, my client is telling me that the app is not working at all. Indeed, I have realized that the “Tier 1” has only 5 API requests per minute, which is not enough to load a web page if it includes icons, scripts, and custom components. Thus I’m paying for a completely broken service.

I’m saying this as my only resort now is to switch back to the free plan, which has 50 requests per minute, or to self-host a backendless pro instance, which I’m also setting up in parallel. This seems completely counter-intuitive as I’d expect an easier time and a better service if I was paying, even for an entry-level pricing.

Please consider this as feedback for your services and pricing. If you have any questions I will be happy to answer.

]]>
https://support.backendless.com/t/issue-with-scale-plan/20167#post_1 Sat, 07 Mar 2026 13:39:54 +0000 support.backendless.com-post-106907
Google OAuth error Hi everyone,

One of our clients tried to log in using Google but encountered the following error:
Code: 3109 Error during obtaining of access token. Response from OAuth2 provider server: Bad Request { “error”: “invalid_grant”, “error_description”: “Bad Request” }


Could you please help investigate and advise on a resolution?

App ID:4A47197B-AE30-FA84-FF56-0071F4010900

Thank you!

]]>
https://support.backendless.com/t/google-oauth-error/20166#post_1 Fri, 06 Mar 2026 20:43:22 +0000 support.backendless.com-post-106906
Previously Added Logic Was Reverted Got it. Thank you!

]]>
https://support.backendless.com/t/previously-added-logic-was-reverted/20159#post_7 Fri, 06 Mar 2026 20:35:46 +0000 support.backendless.com-post-106905
New Backendless Update seems to have broken the Backendless Pricing Estimate Thank you, Karyna

Mike

]]>
https://support.backendless.com/t/new-backendless-update-seems-to-have-broken-the-backendless-pricing-estimate/20163#post_3 Fri, 06 Mar 2026 18:59:16 +0000 support.backendless.com-post-106904
Send data to a specific targeted Data Model from outside the Data Model Thank you Vlad.

Mike

]]>
https://support.backendless.com/t/send-data-to-a-specific-targeted-data-model-from-outside-the-data-model/20155#post_5 Fri, 06 Mar 2026 18:37:17 +0000 support.backendless.com-post-106903
UI hanging on loading logis and UI interface @Paul_HIllen,

The issue has been fixed and everything should be working as expected now. Feel free to reach out if you have any further questions.

Kind regards,
Karyna

]]>
https://support.backendless.com/t/ui-hanging-on-loading-logis-and-ui-interface/20165#post_3 Fri, 06 Mar 2026 16:42:24 +0000 support.backendless.com-post-106902
UI hanging on loading logis and UI interface Hello, @Paul_HIllen

We’ve passed this issue to our DevOps team and they are looking into it. We’ll get back to you with an update as soon as possible.

Regards,
Karyna

]]>
https://support.backendless.com/t/ui-hanging-on-loading-logis-and-ui-interface/20165#post_2 Fri, 06 Mar 2026 12:19:00 +0000 support.backendless.com-post-106901
UI hanging on loading logis and UI interface Hi,
I’m accessing backendless via eu server.
When asking for UI builder, the system shows loading icon and takes minutes to load. Also, when asking for logic it also hangs.
ID - 999D4F62-8A9B-4BFB-A20C-0CDEA2931FD6
Apple iMac M1, problem appears on Opera & Chrome [all latest versions]
Regards,
Paul

]]>
https://support.backendless.com/t/ui-hanging-on-loading-logis-and-ui-interface/20165#post_1 Fri, 06 Mar 2026 11:12:12 +0000 support.backendless.com-post-106900
New Backendless Update seems to have broken the Backendless Pricing Estimate Hello, @Michael_Kadron

I just checked your app and everything looks to be working correctly now.

Please don’t hesitate to reach out if you notice anything else, we’re always happy to help.

Kind regards,
Karyna

]]>
https://support.backendless.com/t/new-backendless-update-seems-to-have-broken-the-backendless-pricing-estimate/20163#post_2 Fri, 06 Mar 2026 09:27:48 +0000 support.backendless.com-post-106899
Data table, how to apply a style change on selecting a row Hello, @Paul_HIllen

To customize the highlight color, you need:

  1. Go to Theme → Extensions
  2. Create a new extension
  3. Add the following CSS:
  .bl-data-table .bl-data-table-row.Mui-selected {
    background-color: yellow;
  }

Just replace yellow with any color you’d like, for example #ffeb3b, green, rgb(255, 235, 59) . Any standard color format works perfectly.

Hope this helps. Feel free to reach out if you have any other questions.

Kind regards,
Karyna

]]>
https://support.backendless.com/t/data-table-how-to-apply-a-style-change-on-selecting-a-row/20161#post_2 Fri, 06 Mar 2026 09:13:53 +0000 support.backendless.com-post-106898
Security and TLS failures Good, thank you for checking.

No, there is no renewal lag. I suspect the issue with the DNS somewhere on the side of the visitors who experienced the issue.

]]>
https://support.backendless.com/t/security-and-tls-failures/20164#post_4 Thu, 05 Mar 2026 17:23:28 +0000 support.backendless.com-post-106896
Security and TLS failures It seems to be working now. I just want to make sure that there isn’t a time lag in renewing that may cause this to happen in the future.

]]>
https://support.backendless.com/t/security-and-tls-failures/20164#post_3 Thu, 05 Mar 2026 17:21:07 +0000 support.backendless.com-post-106895
Security and TLS failures Hi Jacob,

I checked the certificate for https://fracturebook.ota.org/, and it is valid:

I also ran a check here:

Can you open your site and check if you get a certificate error?

Regards,
Mark

]]>
https://support.backendless.com/t/security-and-tls-failures/20164#post_2 Thu, 05 Mar 2026 16:39:41 +0000 support.backendless.com-post-106894
Security and TLS failures For the site fracturebook.ota.org, I am getting reports that connections are failing due to an expired certificate, and trying to access the “Security” tab in the Backendless admin gives me this error:

]]>
https://support.backendless.com/t/security-and-tls-failures/20164#post_1 Thu, 05 Mar 2026 16:16:07 +0000 support.backendless.com-post-106893
Expired Certificate Warning Thank you @mark-piller! :slight_smile:

]]>
https://support.backendless.com/t/expired-certificate-warning/20162#post_3 Thu, 05 Mar 2026 16:08:23 +0000 support.backendless.com-post-106892
Previously Added Logic Was Reverted Hi Francis,

I am glad you worked out a policy for collaborative editing. Indeed, it is important to make sure you’re not stepping on each other toes while working on the same service (i.e. deployment model). My recommendation is whenever someone takes over a service, make sure to completely reload the console to ensure you have the latest changes from the server. Otherwise, the following may happen:

  1. engineer A starts working on a service
  2. engineer B tries to open the same service for editing (see the warning above and waits)
  3. engineer A deploys the service and informs B about it
  4. engineer B starts editing

The problem here is that engineer B is looking at the version of the service that does not have changes from engineer A. As a result, any changes deployed in step 3 will be wiped out when engineer B deploys theirs.

Regards,
Mark

]]>
https://support.backendless.com/t/previously-added-logic-was-reverted/20159#post_6 Thu, 05 Mar 2026 16:03:37 +0000 support.backendless.com-post-106891
Expired Certificate Warning Hi Mike,

The certificate has been reissued.

Regards,
Mark

]]>
https://support.backendless.com/t/expired-certificate-warning/20162#post_2 Thu, 05 Mar 2026 16:01:36 +0000 support.backendless.com-post-106890
Previously Added Logic Was Reverted Hi Mark,

Whenever we need to update a method in a service and someone else is already working on that specific service, we receive an alert like this. In that case, we usually wait for the other user to finish their update and save their progress before another user starts editing.

As for the log of codeless changes, I’m not sure which one you are referring to, but there is a changelog in each method. However, the log gets removed after some time.

Thank you so much for checking!

]]>
https://support.backendless.com/t/previously-added-logic-was-reverted/20159#post_5 Thu, 05 Mar 2026 15:54:53 +0000 support.backendless.com-post-106889
New Backendless Update seems to have broken the Backendless Pricing Estimate Application ID: 51D297F6-92E1-171F-FF15-A7A602959F00

]]>
https://support.backendless.com/t/new-backendless-update-seems-to-have-broken-the-backendless-pricing-estimate/20163#post_1 Thu, 05 Mar 2026 14:55:37 +0000 support.backendless.com-post-106888
Expired Certificate Warning I’m getting an expired certificate warning on AppID: 51D297F6-92E1-171F-FF15-A7A602959F00.

I thought that these were supposed to be renewed automatically?

This is a production site, could somebody please fix it A.S.A.P. :slightly_frowning_face:

Mike

]]>
https://support.backendless.com/t/expired-certificate-warning/20162#post_1 Thu, 05 Mar 2026 14:40:14 +0000 support.backendless.com-post-106887
Data table, how to apply a style change on selecting a row Hi all,
Data table, how to apply a style change on selecting a row.
I can apply a style change to the entire table such as using ‘background’ but how to highlight a selected row.
Cheers
Paul

]]>
https://support.backendless.com/t/data-table-how-to-apply-a-style-change-on-selecting-a-row/20161#post_1 Thu, 05 Mar 2026 14:18:17 +0000 support.backendless.com-post-106886
Send data to a specific targeted Data Model from outside the Data Model you need to replace the list item data with the new one in the list data that your repeater is binding to.

For example:

  1. you a list of items [{id:1}, {id:2} {id:3}]
  2. the list is used in the repeater
  3. when you opened a modal you get the item with id=1 and put (cloned) it to the pageData
  4. after changing the cloned data in the pageData you need to put it back to the repeater list data
  5. using the codeless block MapItems you create a new list with replaced item
  6. then you assign the list to the repeater

]]>
https://support.backendless.com/t/send-data-to-a-specific-targeted-data-model-from-outside-the-data-model/20155#post_4 Thu, 05 Mar 2026 14:02:34 +0000 support.backendless.com-post-106885
Being charged from importing tiny file Hi Kelly,

It is a poor wording of the message. The system is designed to clear any pending balance from your monthly billing cycle whenever you run any import or export operations.

Regards,
Mark

]]>
https://support.backendless.com/t/being-charged-from-importing-tiny-file/20160#post_2 Wed, 04 Mar 2026 23:25:43 +0000 support.backendless.com-post-106884
Being charged from importing tiny file app id = 8149FCCE-07DA-F988-FFBB-6154872C9500
Why am I getting this while importing? I have a credit card associated and am between billing cycles. The file I’m importing is a test to see if I can update records, since the CSVAdapter csv2table thingy apparently can’t do that. It literally has one record in it.

]]>
https://support.backendless.com/t/being-charged-from-importing-tiny-file/20160#post_1 Wed, 04 Mar 2026 23:15:34 +0000 support.backendless.com-post-106883
Previously Added Logic Was Reverted Hi Francis,

I checked the activity log and I see multiple instances where the service is regularly updated by you and Kean, at times within 25 minutes between the updates (on March 2nd for example) - see the screenshot below. If the service logic is fetched by Kean before you deploys the changes, then Kean’s changes will overwrite yours. This is what most certainly caused the "logic changes reversal’.

Both you and Kean should have log of codeless changes on your corresponding machines. You should be able to use it to understand when the overwrite happened.

Regards,
Mark

]]>
https://support.backendless.com/t/previously-added-logic-was-reverted/20159#post_4 Wed, 04 Mar 2026 19:05:00 +0000 support.backendless.com-post-106882
Previously Added Logic Was Reverted Hi Mark,

BG_21_Microschool.

]]>
https://support.backendless.com/t/previously-added-logic-was-reverted/20159#post_3 Wed, 04 Mar 2026 18:56:39 +0000 support.backendless.com-post-106881
Previously Added Logic Was Reverted Hi Francis,

What is the name of the service that contains the method?

Regards,
Mark

]]>
https://support.backendless.com/t/previously-added-logic-was-reverted/20159#post_2 Wed, 04 Mar 2026 18:52:38 +0000 support.backendless.com-post-106880