public static Task <EmergencyNotificationEndpointOrder> CreateEndpointOrders(EmergencyNotificationEndpointOrder order)
 {
     return(CreateEndpointOrders(Client.GetInstance(), order));
 }
        public async static Task <EmergencyNotificationEndpointOrder> CreateEndpointOrders(Client client, EmergencyNotificationEndpointOrder order)
        {
            var item = await client.MakePostRequest <EmergencyNotificationEndpointOrder>(client.ConcatAccountPath($"/emergencyNotificationEndpointOrders"), order);

            return(item);
        }