Application Object
This section outlines the Application object.
Application Object Attributes
The fields listed in the table below will be returned in a JSON object when a successful request has been made.
Attribute | Data Type | Description |
---|---|---|
apns_id | string | The Apple Push Messaging Application ID. |
apns_key_id | string | The key identifier of the Apple token-based authentication key. |
apns_p8 | string | The authentication token signing key, the content of a .p8 file with line breaks converted to \n . |
apns_p12 | string | The Apple Push Notification P12 certificate, encoded to Base64. |
apns_p12_expiration read only | string | The expiration date and time for the Apple Push Notification P12 certificate. |
apns_p12_password | string | The passphrase of the Apple Push Notification P12 certificate. |
apns_team_id | string | The team identifier of your team in Apple Developer account. |
apns_topic | string | The default Apple Push Notification topic for the application. |
application_sid read only | string | The application secure ID. |
google_credentials | string | The Google Auth Credentials JSON file, encoded to Base64 format. Refer to Google Firebase documentation for information on how to generate such JSON credentials file. |
name | string | The name of the application. |
partner read only | object | The Partner object associated with the application. This field is displayed if with_related is set to true when performing the GET queries. |
partner_sid read only | string | The secure ID of the partner associated with the application. |
Sample Application Object
{
"apns_id": "",
"apns_key_id": null,
"apns_p8": null,
"apns_p12": "MIINlwIBAzCCDV4...MYzDtWcmbI2AgEB",
"apns_p12_expiration": "2024-08-19T16:03:25.000Z",
"apns_p12_password": "myStrongPassword",
"apns_team_id": null,
"apns_topic": null,
"application_sid": "8b03edc1-5378-4c4e-a480-9015206089dc",
"google_credentials": "L2hvbWUvdXNlci9Eb3dubG9hZHMvc2VydmljZS1hY2NvdW50LWZpbGUuanNvbgo=",
"name": "N/A",
"partner_sid": "e00430c3-a7d0-4666-ab5c-f7202448382f"
}