Questions tagged [endpoint]

This is a general tag used for all kinds of logic that reside in some receiving or sending scenario.

This is a general tag used for all kinds of logic that reside in some receiving or sending scenario. It's not necessarily bound to code, but may also be used in abstract or descriptive type of questions.

2085 questions
0
votes
1 answer

Best Way to call WebAPI endpoint for child entity from Mobile and Web

There are two tables Item and ItemExtras both have similar table structure in database. We have two price fields in UI, One is Price and ExtrasPrice. Item Price and other fields will be saved in Item table. And ExtrasPrice field needs to insert new…
Jatin Dave
  • 734
  • 1
  • 7
  • 14
0
votes
2 answers

WooCommerce My Account Addresses label not displayed in the website language

The "Addresses" tab in "My Account" page is not displayed in the website language when I use Arabic while it should be already translated. It`s placeholder "the empty highlighted space in the screenshot" still works and navigates to the correct page…
ugugx
  • 21
  • 6
0
votes
2 answers

Has anyone seen this error in Terraform Azurerm Frontdoor?

Seeing this error on my TF logs, after apply. The resource looks ok but trying to understand what it means. (Resource Group ""): unable to enable/update Custom Domain HTTPS for Frontend Endpoint "" (Resource Group ""): waiting to enable Custom…
mac
  • 307
  • 2
  • 17
0
votes
1 answer

How to return value from api call in simple dialog model in angular?

I have angular 8 application. And I just want to show the text from api call in dialog mode. So this is the api call in the component: FirstViewModalComponent
user13448251
0
votes
1 answer

REST API Endpoint naming for specific sub-categories of data

Say I have an API that (along with other entities) deals with tasks. My endpoints would look something like GET /api/tasks //List all tasks POST /api/tasks //Create a new task GET /api/task/1 //Fetch a single task PUT /api/task/1 //Update a single…
MoSlo
  • 535
  • 5
  • 11
0
votes
1 answer

How should I format my POST data for testing an express API endpoint?

I am following: https://www.digitalocean.com/community/tutorials/getting-started-with-the-mern-stack. I would like to test an API endpoint built using express. I would like to test POST. The node server is running and I am using postman to check if…
GoBlueDev
  • 73
  • 3
0
votes
0 answers

Add rewrite rules for pagination

I need to add rewrite rules for pagination on my endpoint with a query using wl_paged variable. I want to achieve this: https://example.com/wishlist/?wl_paged=2 So I tried using add_rewrite_rule, but it doesn't work the link is still…
Polar
  • 3,327
  • 4
  • 42
  • 77
0
votes
1 answer

How to use "where" clause in curl?

I've an API endpoint to fetch all the items added by a user, it returns a JSONArray of all the objects added by a user. curl 127.0.0.1:8000/api/products/ -H "Authorization: Token xxxxxxxxx" The response looks something like…
Prajwal Kulkarni
  • 1,480
  • 13
  • 22
0
votes
2 answers

Should I hide API endpoint located in package.json as proxy

This is a newbie question. I'm currently working on a twitter clone and added my firebase API endpoint to package.json to use with axios. "proxy": "https://europe-west1-APPNAME-RANDOMNUMBERS.cloudfunctions.net/api" Before pushing my code to Github,…
Heysem
  • 86
  • 8
0
votes
1 answer

REST bulk endpoint for fetching data

We(producer for the API) have an endpoint /users/:{id}/name which is used to retrieve name for the user 'id' Now as a consumer I want to display the list of names for users like: user1: id1, name1 uder2: id2, name2 where I have the ids in…
raj
  • 124
  • 7
0
votes
1 answer

Invoking SageMaker Endpoint for PyTorch Model

I'm trying to call my SageMaker model endpoint both from Postman and the AWS CLI. The endpoint's status is "in service" but whenever I try to call it it gives me an error. When I try to use the predict function in the SageMaker notebook and provide…
user13890334
0
votes
1 answer

Create endpoint HTTP Rest on cloud

I'm starting to programming bot in whatsapp and I want to create one so that my family can use, but here's is the problem, I use ngrok to create my endpoint URL, so I make my machine into a host, and that's the problem, because when I turn off ngrok…
ivarejao
  • 25
  • 8
0
votes
0 answers

Create a maximo Endpoint for an external SOAP Webservice with basic authorization

So I have a wsdl file and based on that I want to create an endpoint in Maximo. In SoapUi it works without issues but in maximo ( from what I can see ) it doesn't do the login because the response I get is an HTML page with a login page from the…
Mircea
  • 37
  • 1
  • 11
0
votes
0 answers

Typeorm find returns 404

i have a find() query to my database, which i want to be able return a list of all my questions in that table. The serivce async findAll() : Promise{ return await this.questionRepository.find(); } The…
TNelen
  • 55
  • 1
  • 7
0
votes
2 answers

@NotNull integer parameter

I created an endpoint, and I want to display a message if I don't fill a specific parameter. For example: @NotNull(message = "The distance must be specified.") @QueryParam("distance") final double distance; But for some reason I don't receive…