Basic Requests

Basis requests like register, login, logout

/v1/register

POST https://api.stellitepay.com/v1/register

Create a new User

Query Parameters

NameTypeDescription

user

array

All new user data

email

string

Email of the new user

name

string

Name of the new user

password

string

Password of the new user

key

string

Your Integrator Key

betakey

string

Beta Key for registration

Headers

NameTypeDescription

Content-Type

string

application/json

{
    "status":"success",
    "message":{
        "id":1,
        "name":"Philip",
        "email":"philip119@gmx.de",
        "address":"SEiSnc98BDB562nrcHPMsJ41raZnEmsKmUCfn1hCCwbbRd4NbmRGDM1AbuDahyFW7MSJNbKYa6LDy7SPLqu2hCYNi72VaTtHwh1ABcMYcpjob",
        "payment_id":"3f742cb2d8f25278",
        "updated_at":"2018-06-21 17:56:35",
        "updated_at":"2018-06-21 17:56:35"
    }
}

/v1/login

POST https://api.stellitepay.com/v1/login

Login a user

Query Parameters

NameTypeDescription

email

string

Users email

password

string

Users password

key

string

You integrator key

Headers

NameTypeDescription

Content-Type

string

application/json

{
    "status":"success",
    "message": {
        "access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6Ijc2ZjY2ZjUwOTBhZjgzMzJhYjljMjcwYmE2Y2I2NGNmOWY1OTg5NGMzMjkwNjBiZDY3NzgwODA0OTJlMDg4MzI2ZTM1OTMzMWEzY2IzNjUzIn0.eyJhdWQiOiIyIiwianRpIjoiNzZmNjZmNTA5MGFmODMzMmFiOWMyNzBiYTZjYjY0Y2Y5ZjU5ODk0YzMyOTA2MGJkNjc3ODA4MDQ5MmUwODgzMjZlMzU5MzMxYTNjYjM2NTMiLCJpYXQiOjE1Mjc2MjI3NDIsIm5iZiI6MTUyNzYyMjc0MiwiZXhwIjoxNTI3NjI4NzQyLCJzdWIiOiIxIiwic2NvcGVzIjpbXX0.hqUzpx_EtutJUiuJGhZfpN01V57NLUsZf7_jwmwWf_G3zz0CEF_3G4fgaAOuiycPnrJtnmStu-pXvXM3L8K0mGrLtEtUMbtH4FectFtqXuQfp9KhPpNjCDz3NW-orjHW9igWNOmTg9daPljFiBxqi_rs7J0RGWBy1mILT-fw0eToGaegtRHezxc022xEgquTaPbw9ZQMETxYNAVaEmXdQyz6uEsOMOlIdDFe9aoxg522jzmcsDaQilXNswTNokLxfUHjAU2kRNa0ahCs14GsEJY9ucJgkkzwrajppTdcJ-mnyAd0Fmx0K-dvdb1h6z2ILPA5JZ7Pf_rlSXFPa5s5rej_tGzC08UX2fwO6qSfbiLCNKWXGz40ldSLlBVFK0bRSZ152TLEE-lWB5YPbqq1gg85GzBkzsp07X8omTXAfaDNxqAsn9ZHf_1d0Xt1jxKE9kuao-iqY4OwytrTLLGv_jQoDV5j6-BGnUAX-7NrugVwcuWk2kPN26xOn8Tvm3XCawkOZ622TM3OgbuVjrOSGS3AT4_vrYOloNtnSM_VjSdqeYrQxuVaE80GcSQJoK68HBgbUAfyUe1f49s1SpILbFPtfACK6Sslrl3C7IAqsnZad785gEt1q4pSIFysRsg8wwALl63mWzty4LgU3nqOsZFv_7iFbuJFH1osY4kEXSc",
        "expires_in":600
    }
}

/v1/activate

POST https://api.stellitepay.com/v1/activate

Activate the new user account

Query Parameters

NameTypeDescription

activate

string

Email activation key

Headers

NameTypeDescription

Content-Type

string

application/json

{
    "status":"success",
    "message":"successful"
}

/v1/logout

POST https://api.stellitepay.com/v1/logout

Headers

NameTypeDescription

Content-Type

string

application/json

Authorization

string

Your "Bearer" access token

{

}

Last updated