RegisterMobileAppEndpoint

Returns ()

Register Mobile App End Point to the designated Folder with a request.

Name Description
folder
request

Register Mobile App Endpoint

Example in C#

// Returns: String
var item = await client.RegisterMobileAppEndpoint(FolderInfo folder, item request);

Example in CURL



           curl -X POST \
               https://keepapi.feenicshosting.com/api/f/INSTANCE.KEY/mobileplatformappendpoint \
               -H 'Authorization: Bearer TOKEN_GOES_HERE' \
               -H 'Content-Type: application/json' \
               -d '{
                       "$type":"Feenics.Keep.WebApi.Model.MobilePlatformAppEndpointRegisterRequest, Feenics.Keep.WebApi.Model",
                       "MobileAppKey":MOBILEAPP.KEY,
                       "Platform":PLATFORM_IDENTIFIER,
                       "IsSandboxed":false,
                       "DeviceName":DEVICE_NAME,
                       "DeviceToken":DEVICE_TOKEN,
                       "AmazonResourceName":"ExampleEndpointArnFor_cUrl"
                   }'