Skip to content

Latest commit

 

History

History
72 lines (45 loc) · 966 Bytes

ITest.md

File metadata and controls

72 lines (45 loc) · 966 Bytes

ITest

Interface used for testing

Test (v1)

A test endpoint that doesn't require authentication and doesn't return anything information other than the default status and time fields.

GET|POST https://api-trade.wax.io/ITest/Test/v1/

Authentication

None required.

Input

none

Output

{
    "status": 1,
    "time": 1524696880
}

TestAuthed (v1)

GET|POST https://api-trade.wax.io/ITest/TestAuthed/v1

Authentication

API key required.

Input

none

OAuth Scopes

identity_basic, identity

{
    "status": 1,
    "time": 1538088235,
    "response": {
        "uid": 123456
    }
}

TestBody (v1)

GET|POST https://api-trade.wax.io/ITest/TestBody/v1

Authentication

API key required.

Input

Any test input.

Output

Everything that was sent as input.