Get Application by SID
This request returns data for an application, targeted by secure ID.
get | /push/applications/{application_sid} |
Sample
A sample GET request to get an application, targeted by secure ID:
curl -X GET \
'https://api.carrierx.com/core/v2/push/applications/8b03edc1-5378-4c4e-a480-9015206089dc' \
-H 'Authorization: Bearer 5ebc03d6-8b2b-44ad-bf65-72d4f1491dda'
Response
200
status code with a serialized copy of the Application object:
{
"apns_id": null,
"apns_key_id": null,
"apns_p8": null,
"apns_p12": null,
"apns_p12_expiration": null,
"apns_p12_password": null,
"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"
}
This request is enabled for Field Filtering.
Required Scopes
To get information about an Application object, the partner must have one of the following scopes enabled:
push.manage
push.read
Path Arguments
Parameter | Data Type | Description |
---|---|---|
application_sid required | string | The application secure ID. |
Query Arguments
Parameter | Data Type | Description |
---|---|---|
with_related | boolean | Determines if the partner information related to the application should be shown. Values accepted in this field are true and false . The default value is false . |