BASE_URL
BASE_URL
listChannels(integer $limit = null) : \UrbanAirship\Devices\DeviceListing\ChannelList
Return a list of channels for the app. The ChannelList implements an Iterator.
| integer | $limit | Limit on channels returned |
listDeviceTokens(integer $limit = null) : \UrbanAirship\Devices\DeviceListing\DeviceTokenList
Return a list of device tokens for the app. The DeviceTokenList implements an Iterator.
| integer | $limit | Limit on tokens returned |
listAPIDs(integer $limit = null) : \UrbanAirship\Devices\DeviceListing\APIDList
Return a list of APIDs
| integer | $limit | Limit on tokens returned |
channelLookup( $deviceId) : \UrbanAirship\Devices\DeviceLookup\ChannelLookup
Get information on an individual channel
| $deviceId |
deviceTokenLookup( $deviceId) : \UrbanAirship\Devices\DeviceLookup\DeviceTokenLookup
Get information on an individual device token
| $deviceId |
apidLookup( $deviceId) : \UrbanAirship\Devices\DeviceLookup\APIDLookup
Get information on an individual APID
| $deviceId |
push() : \UrbanAirship\Push\PushRequest
Return a PushRequest that can be used to send a push
scheduledPush() : \UrbanAirship\Push\ScheduledPushRequest
Return a ScheduledPushRequest that can be used to setup a scheduled push.
request(string $method, mixed $body, string $uri, string $contentType = null, integer $version = 3, mixed $request = null) : \Httpful\associative|string
Send an authenticated request to the Urban Airship API. The request is authenticated with the key and secret.
| string | $method | REST method for request |
| mixed | $body | Body of request, optional |
| string | $uri | URI for this request |
| string | $contentType | Content type for the request, optional |
| integer | $version | version # for API, optional, default is 3 |
| mixed | $request | Request object for this operation (PushRequest, etc) optional |