POST /oauth/token HTTP/1.1
Content-Type: application/json
{
"grant_type": "password",
"client_id": "CLIENT_ID",
"owner_type": "OWNER_TYPE",
"username": "OWNER_EMAIL",
"password": "OWNER_PASSWORD"
}
HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8
{
"access_token": "e2892936f4...3a0d3171b0",
"token_type": "bearer",
"expires_in": 7200,
"refresh_token": "6231777801...735af7da27",
"created_at": 1430921359,
"owner_id": "OWNER_ID",
"owner_type": "OWNER_TYPE"
}