Body
-
The Credential type. Can be:
gcm
,fcm
, orapn
.Values are
gcm
,apn
, orfcm
. -
A descriptive string that you create to describe the resource. It can be up to 64 characters long.
-
[APN only] The URL-encoded representation of the certificate. Strip everything outside of the headers, e.g.
-----BEGIN CERTIFICATE-----MIIFnTCCBIWgAwIBAgIIAjy9H849+E8wDQYJKoZIhvcNAQEFBQAwgZYxCzAJBgNV.....A==-----END CERTIFICATE-----
-
[APN only] The URL-encoded representation of the private key. Strip everything outside of the headers, e.g.
-----BEGIN RSA PRIVATE KEY-----MIIEpQIBAAKCAQEAuyf/lNrH9ck8DmNyo3fGgvCI1l9s+cmBY3WIz+cUDqmxiieR\n.-----END RSA PRIVATE KEY-----
-
[APN only] Whether to send the credential to sandbox APNs. Can be
true
to send to sandbox APNs orfalse
to send to production. -
[GCM only] The
Server key
of your project from Firebase console under Settings / Cloud messaging. -
[FCM only] The
Server key
of your project from Firebase console under Settings / Cloud messaging.
curl \
--request POST 'https://notify.twilio.com/v1/Credentials' \
--user "username:password" \
--header "Content-Type: application/x-www-form-urlencoded" \
--data 'Type=apn'
{"Type"=>"apn"}
{
"sid": "CRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"url": "https://notify.twilio.com/v1/Credentials/CRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"type": "apn",
"sandbox": "False",
"account_sid": "ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"date_created": "2015-10-07T17:50:01Z",
"date_updated": "2015-10-07T17:50:01Z",
"friendly_name": "Test slow create"
}