Fields when send to the api inside a request.
Field | Type | Description |
---|---|---|
token | String | A String value |
bundle_name | String | A String value |
device_type | String | String enumarion of 'ios', 'android' |
Fields when returned by the api in a response.
Field | Type | Description |
---|---|---|
token | String | A String value |
bundle_name | String | A String value |
device_type | String | String enumarion of 'ios', 'android' |
user_id | Int | An integer value |
When used inside a request.
{
"token": "...",
"bundle_name": "...",
"device_type": "ios"
}
When returned in a response.
{
"token": "...",
"bundle_name": "...",
"device_type": "ios",
"user_id": 13
}