93,127 questions
0
votes
0
answers
70
views
Unable to use the Alexa REST API to update the "datastore" for an Alexa Widget
I have written a simple Alexa skill which works and I've now added a Widget, these both display as expected.
I am now trying to use the datastore but every time I try to update the store, I am getting ...
-3
votes
0
answers
66
views
FastAPI Performance Enhancement with Snowflake [closed]
I am developing a FastAPI application which will be deployed on EKS.
Purpose of this application: the API should get input in the requests, application will extract the filter and sort and pagination ...
-2
votes
0
answers
32
views
Persistent 404 Not Found on fileStores Endpoint for Gemini File Search Tool (Project ID: gen-lang-client-0476106342) [closed]
I am attempting to set up the Gemini API File Search Tool (Managed RAG) via a POST request to create a FileStore. I am running into a persistent 404 Not Found error, despite confirming billing is ...
-4
votes
0
answers
20
views
Link zkteco devices to Spring boot backend [closed]
I want to ask a question about zkteco devices
I develop a gym management app with react and Spring boot , the last point is to make the zkteco devices ask for action from the backend
Now i develop a ...
Best practices
0
votes
1
replies
23
views
Server to Client under multipart/form-data
Given some object:
class Foo {
metadata_field1: ...,
metadata_field2: ...,
file: Blob
}
Let's also consider definitions where Foo has multiple Blob attributes, or an array of Blobs, or even ...
Best practices
0
votes
2
replies
38
views
Is it normal to send a JSON response with a list of objects where the properties of the objects differ based on their type?
My client has requested that I provide a response from my API that looks like the following:
{
"entity_type": "company",
"registered_date": "2020-01-01",...
Best practices
0
votes
2
replies
34
views
Is defining the same endpoints for web browser and m2m is bad practice? Why?
I am working on a project which has 2 types of communication. First, via the web browser through React. The second is M2M communication. I have 2 security filter chains for each.
I have secured the ...
0
votes
0
answers
38
views
ServiceNow REST API: 403 “Forbidden” when accessing sys_script table using custom role (works with admin)
I’m trying to access the sys_script table through the ServiceNow Table API using a custom role, but I always get:
HTTP 403 Forbidden
Field(s) present in the query do not have permission to be read
The ...
0
votes
1
answer
58
views
How can I add API common prefix for controllers
I want to add an API common prefix for all controllers, e.g. /api/v1. I am using inversify with the @inversify/http-express package.
Here is my current base server adapter setup:
class Server {
...
Best practices
0
votes
1
replies
61
views
What is the best implementation for probably a simple idea I have?
Here's what I want to do: I want to store files onto my office's computer.
I lack experience in terms of completed solutions. I’ve only built a prototype once via ChatGPT, and I want to ask if this is ...
Best practices
0
votes
0
replies
36
views
Why prefer webhooks to CDC?
QuickBooks Online's API documentation includes a recommendation that users use webhooks instead of change-data-capture to synchronize their entity records with QuickBooks's. Why are webhooks ...
1
vote
1
answer
85
views
Downloading a large file in spring MVC through Web client
I'm trying to download a large file with with Spring web client without loading an entire file to the memory. I have such service method:
@Override
public StreamingResponseBody download() {
Flux&...
1
vote
1
answer
86
views
Java Springboot API endpoint overload
I'm making a banking application where a user can create a bank account, this account can be a savings account with a monthly income or a current account with a monthly upkeep, the classes of both ...
Best practices
1
vote
3
replies
44
views
Athena health api documents
I’m trying to build an application that can download patient documents from Athenahealth, but I can’t figure out whether this is actually supported. The official API documentation is extremely limited ...
Best practices
0
votes
3
replies
52
views
How should I structure NestJS services when one endpoint needs to update multiple entities (e.g., InvestorProfile and TaxProfile)?
I’m working on a NestJS + TypeORM backend and ran into an architectural question as my codebase evolved.
Initially, I had a simple setup:
InvestorProfileController handles PATCH /investor-profile
...