Favicon

You are here: Home > API Reference > S2S > S2S Prepare (internal use)

S2S Prepare (internal use)

S2S Prepare (internal use)

GET
/v1/s2s/edge/prepare
Copy to clipboard

S2S Prepare (internal use)

S2S Prepare (internal use)

Request

Add parameter in header authorization
Example: Authorization: Bearer <token>

Responses

200 Response application/json
status boolean optional
data object optional
userId string optional
{
    "status": true,
    "data": {
        "userId": "string"
    }
}
401 Response application/json
status boolean optional
false
error object optional
code number optional
4004
message string optional
Invalid Token
{
    "status": false,
    "error": {
        "code": 4002,
        "message": "No auth token"
    }
}
404 Response application/json
status boolean optional
false
error object optional
code number optional
3001
message string optional
Entity not found
{
    "status": false,
    "error": {
        "code": 3001,
        "message": "Entity not found"
    }
}