Subscription
To register a subscriber, Quantum Fabric Engagement Services calls Subscription API with subscription payload and sends the requested pushes to the subscriber. The Subscription API returns a unique KSID for the subscriber that can be used for sending pushes or updating geolocations or unsubsciptions.
IMPORTANT: The Subscription API is maintained here to preserve backward compatibility. We encourage you to use Create/Modify Subscriber
URL
The HTTP URL for Subscription API is:
http://<host or ip>:<port>/kpns/subscription
Method
POST
Content Type
Based on the content format, the payload's request header includes "Content-Type" for:
Sample Request
XML
XML syntax for generic
<?xml version='1.0' encoding='UTF-8'?> <subscriptionService> <subscribe> <appId>xxxxx</appId>
<deviceId>xxxx</deviceId> <ufid>xxxx</ufid> <sid>xxxxx</sid> <osType>xxxx</osType>
<!-- enable authToken if you want to enable security -->
<authToken>xxxx</authToken>
</subscribe> </subscriptionService>
XML syntax for iOS
- The following subscription request is sent from an iPhone.
<?xml version='1.0' encoding='UTF-8'?> <subscriptionService> <subscribe> <appId>xxxxx</appId>
<deviceId>xxxx</deviceId> <ufid>xxxx</ufid> <sid>xxxxx</sid>
<osType>iphone</osType>
<!-- enable authToken if you want to enable security -->
<authToken>xxxx</authToken>
</subscribe> </subscriptionService>
- The following subscription request is sent from an iPad.
<?xml version='1.0' encoding='UTF-8'?> <subscriptionService> <subscribe> <appId>xxxxx</appId> <deviceId>xxxx</deviceId> <ufid>xxxx</ufid> <sid>xxxxx</sid> <osType>ipad</osType> <authToken>xxxx</authToken>
</subscribe> </subscriptionService>
XML syntax for Android
Any one of the following two syntax can be used.
- The following subscription request is sent from Android.
<?xml version='1.0' encoding='UTF-8'?> <subscriptionService> <subscribe> <appId>xxxxx</appId>
<deviceId>xxxx</deviceId> <ufid>xxxx</ufid> <sid>xxxxx</sid> <osType>androidgcm</osType>
<!-- enable authToken if you want to enable security -->
<authToken>xxxx</authToken>
</subscribe> </subscriptionService>
- The following subscription request is sent from androidgcm
<?xml version='1.0' encoding='UTF-8'?> <subscriptionService> <subscribe> <appId>xxxxx</appId>
<deviceId>xxxx</deviceId> <ufid>xxxx</ufid> <sid>xxxxx</sid> <osType>android</osType> <isGCM>true</isGCM>
<!-- enable authToken if you want to enable security -->
<authToken>xxxx</authToken>
</subscribe> </subscriptionService>
XML syntax for BlackBerry
<?xml version='1.0' encoding='UTF-8'?> <subscriptionService> <subscribe> <appId>xxxxx</appId> <deviceId>xxxx</deviceId> <ufid>xxxx</ufid> <sid>xxxxx</sid> <osType>blackberry</osType> <!-- enable authToken if you want to enable security --> <authToken>xxxx</authToken> </subscribe> </subscriptionService>
XML syntax for Windows 8 Phones (Windows Phone Notification Services)
<?xml version='1.0' encoding='UTF-8'?> <subscriptionService> <subscribe> <appId>xxxxx</appId> <deviceId>xxxx</deviceId> <ufid>xxxx</ufid> <sid>xxxxx</sid> <osType>windows</osType> <!-- enable authToken if you want to enable security --> <authToken>xxxx</authToken> </subscribe> </subscriptionService>
XML syntax for Windows RT and PRO (Tablets) (Windows Notification Services)
<?xml version='1.0' encoding='UTF-8'?> <subscriptionService> <subscribe> <appId>xxxxx</appId> <deviceId>xxxx</deviceId> <ufid>xxxx</ufid> <sid>xxxxx</sid> <osType>windows8</osType> <!-- enable authToken if you want to enable security --> <authToken>xxxx</authToken> </subscribe> </subscriptionService>
XML syntax for Web
<?xml version='1.0' encoding='UTF-8'?> <subscriptionService> <subscribe> <appId>xxxxx</appId>
<deviceId>xxxx</deviceId> <ufid>xxxx</ufid> <sid>xxxxx</sid> <osType>webfcm</osType> <isGCM>true</isGCM>
<!-- enable authToken if you want to enable security -->
<authToken>xxxx</authToken>
</subscribe> </subscriptionService>
JSON
JSON syntax for generic
{ "subscriptionService": { "subscribe": { "sid": "xxxx", "appId": "Quantum MobileFabric MessagingDEV", "ufid": "xxxx",
//enable authToken if you want to enable security
"authToken": "xxxx",
"osType": "xxxx",
"deviceId": "xxxx" } } }
JSON syntax for iOS
- The following subscription request is sent from an iPhone.
{
"subscriptionService": {
"subscribe": {
"sid": "xxxx",
"appId": "xxxxx",
"ufid": "xxxx",
"osType": "iphone",
"deviceId": "xxxx"
}
}
}
- The following subscription request is sent from an iPad.
{ "subscriptionService": { "subscribe": { "sid": "xxxx", "appId": "xxxxx", "ufid": "xxxx", "osType": "ipad",
"deviceId": "xxxx" } } }
JSON syntax for Android
Any one of the following two syntax can be used.
- The following subscription request is sent from Android.
{ "subscriptionService": { "subscribe": { "sid": "xxxx", "appId": "xxxxx", "ufid": "xxxx", "osType": "androidgcm",
"deviceId": "xxxx" } } }
- The following subscription request is sent from androidgcm.
{ "subscriptionService": { "subscribe": { "sid": "xxxx", "appId": "xxxxx", "ufid": "xxxx", "osType": "android",
"isGCM": "true",
"deviceId": "xxxx"
} } }
JSON syntax for BlackBerry
//BlackBerry { "subscriptionService": { "subscribe": { "sid": "xxxx", "appId": "xxxxx", "ufid": "xxxx", "osType": "blackberry", "deviceId": "xxxx" } } }
JSON syntax for Windows 8 Phones (Windows Phone Notification Services)
{ "subscriptionService": { "subscribe": { "sid": "xxxx", "appId": "xxxxx", "ufid": "xxxx", "osType": "windows", "deviceId": "xxxx" } } }
JSON syntax for Windows RT & PRO (Tablets) (Windows Notification Services)
{ "subscriptionService": { "subscribe": { "sid": "xxxx", "appId": "xxxxx", "ufid": "xxxx", "osType": "windows8", "deviceId": "xxxx" } } }
JSON syntax for Web
{ "subscriptionService": { "subscribe": { "sid": "xxxx", "appId": "xxxxx", "ufid": "xxxx", "osType": "android",
"isGCM": "true",
"deviceId": "xxxx"
} } }
Input Parameters
The following fields are input parameters:
Sample Responses
XML
1. Subscription Success Response: <subscriptionResponse> <statusCode>200</statusCode> <ksid>xxxx</ksid> <message>Subscription successful. </message> </subscriptionResponse> 2. Subscription Update Success Response: <subscriptionResponse> <statusCode>200</statusCode> <ksid>xxxx</ksid> <message>Update successful. </message> </subscriptionResponse> 3. Duplicate Subscription: <subscriptionResponse> <statusCode>201</statusCode> <ksid>xxxx</ksid> <message>Duplicate subscription. SID element has the ID of existing subscription. </message> </subscriptionResponse> 4. If Application ID is Invalid: <subscriptionResponse> <statusCode>404</statusCode> <ksid>-1</ksid> <message>Invalid Application ID. </message> </subscriptionResponse> 5. If Request is invalid: <subscriptionResponse> <statusCode>400</statusCode> <ksid>-1</ksid> <message>Invalid request format. </message> </subscriptionResponse> 6. If Authentical Token is invalid: <subscriptionResponse> <statusCode>401</statusCode> <ksid>-1</ksid> <message>Unauthorized request. The authToken is invalid. </message> </subscriptionResponse> 7. If subscription is unclear: <subscriptionResponse> <statusCode>403</statusCode> <ksid>-1</ksid> <message>Subscription unclear. Found multiple subscriptions with given input. Check your SID and DEVICE ID</message> </subscriptionResponse> 8. Server Error: <subscriptionResponse> <statusCode>500</statusCode> <ksid>-1</ksid> <message>Server failed to process the request. </message> </subscriptionResponse>
JSON
1. SubscriptionSuccessReponse:
{ "subscriptionResponse": { "statusCode": "200", "ksid": "xxxx", "message": "Subscription successful." } }
2. SubscriptionUpdateSuccessReponse:
{ "subscriptionResponse": { "statusCode": "200", "ksid": "xxxx", "message": "Update successful." } }
3. UnsubscriptionSuccessResponse:
{ "subscriptionResponse": { "statusCode": "200", "ksid": "xxxx", "message": "Unsubscription successful." } }
4. Ifalreadyunsubscribed:
{ "subscriptionResponse": { "statusCode": "200", "ksid": "xxxx", "message": "Already unsubscribed." } }
5. DuplicateSubscription:
{ "subscriptionResponse": { "statusCode": "201", "ksid": "xxxx", "message": "Duplicate subscription. SID element has ID of existing subscription." } }
6. IfApplicationIdisInvalid:
{ "subscriptionResponse": { "statusCode": "404", "ksid": "-1", "message": "Invalid Application ID." } }
7. IfRequestisinvalid:
{ "subscriptionResponse": { "statusCode": "400", "ksid": "-1", "message": "Invalid request format." } }
8.IfAuthenticalTokenisinvalid:
{ "subscriptionResponse": { "statusCode": "401", "ksid": "-1", "message": "Unauthorized request. The authToken is invalid." } }
9. Ifsubscriptionisunclear:
{ "subscriptionResponse": { "statusCode": "403", "ksid": "-1", "message": "Subscription unclear. Found multiple subscriptions with given input. Check your SID and DEVICE ID " } }
10.ServerError: { "subscriptionResponse": { "statusCode": "500", "ksid": "-1", "message": "Server failed to process the request. " } }
Response Status
Code | Description |
---|---|
200 |
Update successful |
200 |
Subscription successful |
201 |
Duplicate subscription. SID element has ID of existing subscription |
400 |
Invalid request format |
401 |
Unauthorized request. The authToken is invalid |
403 |
Subscription unclear. Found multiple subscriptions with given input. Check your SID and DEVICE ID |
404 |
Invalid Kony Application ID |
404 |
No valid subscription exists |
500 |
Server failed to process the request. |