Skip to content

Latest commit

 

History

History
70 lines (49 loc) · 717 Bytes

test.md

File metadata and controls

70 lines (49 loc) · 717 Bytes

Test

  1. Test GET
  2. Test POST

Test GET

Test your API client's GET requests

Endpoint

GET /v0/marco

Parameters

None

Response

Status: 200 OK
X-Blockspring-Api-Version: v0
{
  "shout": "POLO!"
}

Test POST

Test your API client's POST requests

Endpoint

POST /v0/echo

Parameters

Post any JSON object to have it echoed back to you.

Example

{
  "this": {
    "is": "too",
    "cool": ["for", "school"]
  },
  "wow": 9001
}

Response

Status: 200 OK
X-Blockspring-Api-Version: v0
{
  "this": {
    "is": "too",
    "cool": ["for", "school"]
  },
  "wow": 9001
}