Retrieve a Blob
GET https://jsonblob.com/api/jsonBlob/{{last_created_jsonblob}}
Retrieving a JSON Blob is accomplished by sending a GET request to /api/jsonBlob/<blobId>, where <blobId> is the last part of the URL path returned from the POST request. Upon successfully retrieving the JSON Blob, a 200 response will be returned. If no JSON Blob exists for the given <blobId>, a 404 response will be returned. The body of the response is the JSON that was stored in the JSON Blob.
Use the Blob ID from a
Create a BlobPOSTrequest and append it to the URL to retrieve the JSON. If you have recently created a blob using Qodex, the variable{{last_created_jsonblob}}already has the blob id.
Request Body
[{"name"=>"access_token", "value"=>"def", "datatype"=>"string"}, {"name"=>"id", "value"=>"U2", "datatype"=>"string"}, {"name"=>"secret", "value"=>"zeppelin", "datatype"=>"string"}]
HEADERS
| Key | Datatype | Required | Description |
|---|---|---|---|
Content-Type | string | ||
Accept | string |