About 12,300,000 results
Open links in new tab
  1. When do I use path parameters vs. query parameters in a RESTful API ...

    I want to make my RESTful API very predictable. What is the best practice for deciding when to make a segmentation of data using the URI rather than by using query parameters? It makes sense to me ...

  2. What's the difference between REST & RESTful - Stack Overflow

    Oct 15, 2009 · What's the difference between a REST system and a system that is RESTful? From a few things I've read most so called REST services are actually RESTful services.

  3. How do I make calls to a REST API using C#? - Stack Overflow

    Mar 8, 2012 · The ASP.NET Web API has replaced the WCF Web API previously mentioned. I thought I'd post an updated answer since most of these responses are from early 2012, and this thread is …

  4. What is the difference between HTTP and REST? - Stack Overflow

    Dec 27, 2021 · A REST API should spend almost all of its descriptive effort in defining the media type (s) used for representing resources and driving application state, or in defining extended relation names …

  5. Generating token for Fabric Rest api using client secret

    Mar 26, 2024 · Initially, I registered one Entra ID application and created one client secret in it: You need to add above service principal to Fabric workspaces giving at least Contributor role like this: Before …

  6. how to create an issue in jira via rest api? - Stack Overflow

    May 4, 2011 · Is it possible to create an issue in jira using REST api? I didn't find this in the documentation (no POST for issues), but I suspect it's possible. A wget or curl example would be nice.

  7. What is difference between REST and API? - Stack Overflow

    Dec 16, 2016 · REST is a type of API. Not all APIs are REST, but all REST services are APIs. API is a very broad term. Generally it's how one piece of code talks to another. In web development API often …

  8. What is the difference between POST and PUT in HTTP?

    The decision of whether to use PUT or POST to create a resource on a server with an HTTP + REST API is based on who owns the URL structure. Having the client know, or participate in defining, the …

  9. HTTP Status 405 - Method Not Allowed Error for Rest API

    As this "ver" having null service is send status as "204 No Content". And about status code "405 - Method Not Allowed" will get this status code when rest controller or service only supporting GET …

  10. When I should use PATCH or PUT in my REST API request and Design?

    7 Since you want to design an API using the REST architectural style you need to think about your use cases to decide which concepts are important enough to expose as resources. Should you decide to …