Create a Blob
POST https://jsonblob.com/api/jsonBlob
Creating a JSON Blob is accomplished by sending a POST
request to /api/jsonBlob
. The body of the request should contain valid JSON that will used as the JSON Blob. Upon successfully storing the JSON blob, a 201
response will be returned. The Location
header in the response will be set to the URL at which the blob can be accessed with a GET
request. The body of the response is the JSON that was stored in the JSON blob.
Replace the JSON in the raw post body with your own JSON and refer to the
testtab after sending the request to easily retrieve the location of your newly created JSON
Request Body
{"people"=>["bill", "steve", "bob"]}
HEADERS
Key | Datatype | Required | Description |
---|---|---|---|
Content-Type | string | ||
Accept | string |
RESPONSES
status: Created
{"people":["bill","steve","bob"]}