Skip to main content

Questions tagged [rest]

REST (Representational State Transfer) is a style of software architecture for distributed hypermedia systems such as the World Wide Web. It has increased in popularity relative to RPC architectures such as SOAP due to the intrinsic de-coupling of client from server that comes from having a uniform interface between heterogeneous systems.

-2 votes
0 answers
13 views

Dynamic Database Driven External API Call Service: Seeking direction/concepts to focus research on

Dynamic Database Driven External API Call Service: Seeking direction/terms to focus research on. Thank you in advance for any responses i get. I'm here seeking a direction for research and any related ...
Whimsicalknight's user avatar
0 votes
0 answers
6 views

API Pagination - Want to get the page from the URL and not from the Body

I am new to the API world and have a question. I am currently making an API custom connector call to plytix with Matillion Data Loader. The call works fine until I want to bring in all the records ...
user26426873's user avatar
0 votes
0 answers
12 views

Spring boot: Why am I getting this 404 Error?

Just to give a little background on the project; I'm making a Spring Boot project using Maven. I have a two microservices, one called "products" and one called "config-server" to ...
dqdq dqsss's user avatar
0 votes
0 answers
16 views

Golang sending binary file over TCP via HTTP/REST

I'm writing a manager for cloud support of legacy IOT devices in Go, the devices establish a tcp connection with the manager, then that connection gets held open for bi-directional communication. The ...
Wayne's user avatar
  • 1
0 votes
0 answers
9 views

Azure DevOps REST API parent relation link to existing work item error

I am attempting to utilize the Azure DevOps REST API to create and/or update a work item in Boards to allow adding a Parent link. So far this is unsuccessful. and its creating an error... Invoke-...
trentR's user avatar
  • 1
0 votes
0 answers
8 views

Delete all items from a sharepoint list with the REST Api

Is there a method to delete all items from a sharepoint list using the REST API ? Preferably not using a Loop over all items and deleting individual item ? I have got to the point where I can delete ...
Dmitriy Ryabin's user avatar
1 vote
0 answers
7 views

using sharepoint REST API - can POST files as an app but not GET a list of files?

I have successfully registered an app and can generate a JWT to get a token for my app to upload files directly into a Sharepoint site. I'm now trying to read this list of files back but the same ...
user26426138's user avatar
0 votes
0 answers
8 views

Can't submit GRES value from slurm REST API

I have been trying to submit the slurm GRES flag through the REST API however, I couldn't find a way to do the same through the REST APIs. I am using the parser version 0.0.40 Is this something not ...
Prasanna's user avatar
  • 4,468
0 votes
0 answers
12 views

SSRS Powershell Rest API "The given key was not present in the dictionary"

I am trying to create a subscription to a report via SSRS Rest API 2.0, but I am getting the error "The given key was not present in the dictionary". I am on SSRS Version 15.0.8863.19101 ...
WKNav4997's user avatar
0 votes
0 answers
5 views

Superset Add user with REST API

I am getting Error in reponse to /api/v1/security/users/ i am trying to insert new user with rest api in apache superset what i did: i sent post request to /api/v1/security/login with json body - i ...
Numonjon Khoshimov's user avatar
0 votes
0 answers
9 views

How to post multiple objects in oracle apex rest api?

I am trying to post data like below { "ORG_ID": "81", "TRX_DATE": "30-JAN-2024", "TRX_NUMBER": "240006078&...
Abdullah Al Mamun's user avatar
0 votes
0 answers
12 views

How to sync Netsuite sales order items to Salesforce order products?

I have created user event script to sync Netsuite Sales order to Salesforce order. I have sync all body level data but having trouble in syncing Netsuite items to the salesforce. Please Help! Here is ...
Maira S's user avatar
0 votes
0 answers
27 views

Chrome can't play videos larger than 25 MBs [closed]

I have an client written in angular which makes a call to a REST API written in JAVA to retrieve a file. If the file is a video, I have the option to play the video inside the client using a video ...
Ștefan Jiroveanu's user avatar
-2 votes
2 answers
28 views

"undefined: utils.GetTrimmedParam" Error when running the 'Hello World' code from 'Getting Started'

I ran the 'Hello World' code mentioned in the official GoFiber document document but got the following error: $ go run main.go # github.com/gofiber/fiber /home/user/go/pkg/mod/github.com/gofiber/fiber@...
user21819272's user avatar
-1 votes
1 answer
32 views

Base URL for Spring Boot and handle / as well

I would like to set the context path for the Spring Boot application, and the following property can achieve that. server.contextPath=/api However, I would like to redirect / to /api . Currently, I ...
Sanchu Varkey's user avatar
1 vote
1 answer
38 views

How can I test a Java method that hits the actual REST API?

So I have a class that holds a bunch of methods(migrated from another project) that are suppose hit a REST API,but I don't know if they are working correctly.I want to create a driver class that i ...
e_wards's user avatar
  • 35
0 votes
0 answers
10 views

Tableau Server REST API - How to filter jobs by extractRefresh task ID?

Is there a way to filter jobs using the tableau REST API according to task ID? I have an extract refresh task I want to run on demand using /runNow but I want to perform a check to see if a job with ...
happycoder2121's user avatar
0 votes
1 answer
25 views

Why are my Firebase RTDB Rules Always Returning Unauthorized

Rules { "rules": { "Accounts": { ".read": "true", "$user_id": { // Check if object has all required values after operation ...
Cory Lentz's user avatar
0 votes
0 answers
18 views

encountering Error: Content is not allowed in prolog with spring boot and apache camel, when transforming

I am writing a springboot application to convert SOAP to REST by using apache camel - private String transformSoapToRest(String soapRequest) throws ParserConfigurationException, IOException, ...
Bijaya's user avatar
  • 1
-1 votes
0 answers
20 views

limit on the number of calls per minute for FeignClient

Call @FeignClient happens throw RetryTemplate.execute(). for example: public AccountBalanceHistoryDto getAccountBalanceHistoryByDate() { for (int i = 0; i < 100; i++) { ...
Aleksandr Berestov's user avatar
0 votes
1 answer
56 views

How do I make sure that I only load flights on search and not initial page load

Rails baby here! trying to work it out with Rails 7. I have a small toy app here that tries to search for flights then have users book a flight. I have managed to string together the app to a point of ...
Taku Mapfumo's user avatar
0 votes
0 answers
27 views

Python script to fetch zip codes within a radius fails to populate CSV correctly

I am trying to write a Python script that reads a CSV file with zip codes, fetches zip codes within a radius using an API, and then populates the results into a new column in the CSV. The API requests ...
Henry Levenberg's user avatar
1 vote
1 answer
59 views

Spring Boot: Error 404 when accessing localhost endpoint

Just to give a little background on the project; I'm making a Spring Boot project using Maven. I have a two microservices, one called "products" and one called "config-server" to ...
dqdq dqsss's user avatar
0 votes
1 answer
35 views

How to revoke token in Laravel Sanctum?

I wrote a simple REST API with Laravel 11. I tested authentication and it looks like the token generated by Sanctum is not revoked despite that I delete the way the documentation writes. class ...
inf3rno's user avatar
  • 25.6k
1 vote
1 answer
11 views

AWS Elemental Live - Querying API returns the GUI Interface

I'm attempting to query the AWS Elemental Live REST API using a Python script. I am using a generated header as described in the API documentation that allows me to authenticate and send the request, ...
Amine Mchayaa's user avatar
0 votes
0 answers
12 views

Strapi enum values change based some value

Is it possible in strapi to set different enums based some value? I want to change my enums list based my exercise type, because I want to others who used admin panel for menage exercise data will ...
Mee's user avatar
  • 43
0 votes
0 answers
26 views

Issues Connecting to Spirent TestCenter Using Java and Tcl

I'm having trouble connecting to Spirent TestCenter (STC) using both Java and Tcl scripts. Here are the steps I've taken and the errors I'm encountering: Using Java: I tried running a Java script with ...
Yuqi Wang's user avatar
  • 233
0 votes
0 answers
10 views

check acl for restful api when and api used in many pages

I have an api to get list of branches. I have two pages, first page use this api to list branches. Second page is for editing CashDesk record. Each CashDesk related to a branch and in page 2 I need ...
Nasser Mansouri's user avatar
0 votes
0 answers
24 views

running python rest server in mojo

Since python rest server would be running in mojo and not in cpython we could get multithreading and not be worried about gil is this assumption correct? if anyone tried this combination do share ...
sandeep kumar's user avatar
0 votes
2 answers
21 views

Dynamic filter options using shorter URLs

What if we want to have GET requests send from a Frontend App to a REST API where the parameters can be huge? The scenario is an endpoint that can receive a huge amount of filters, by huge is over 7k ...
Estevao Santiago's user avatar

15 30 50 per page
1
2 3 4 5 6