json-api-example tagged requests and articles

Categorized request examples and articles tagged with [json-api-example] keyword
How do I post request to JSON API?
To send a request to a JSON API endpoint, you need to make an HTTP API request and indicate that your client can accept the JSON API response by passing the "Accept: application/vnd.api+json" HTTP header to the server. The server informs the client that it has returned a JSON API response by providing the "Content-Type: application/vnd.api+json" HTTP header. When sending data to a JSON API endpoint, you must include a single resource object in the POST message, and the object must contain at least a type attribute. In this JSON API example, we send data to the ReqBin JSON API echo UR and provide the "Accept: application/vnd.api+json" and "Content-Type: application/vnd.api+json" HTTP headers to the server. Click Send to execute the JSON API Example online and see the results.