import com.facebook.ads.sdk.APIContext; import com.facebook.ads.sdk.APIException; import com.facebook.ads.sdk.serverside.Content; import com.facebook.ads.sdk.serverside.CustomData; import com.facebook.ads.sdk.serverside.DeliveryCategory; import com.facebook.ads.sdk.serverside.Event; import com.facebook.ads.sdk.serverside.EventRequest; import com.facebook.ads.sdk.serverside.EventResponse; import com.facebook.ads.sdk.serverside.GenderEnum; import com.facebook.ads.sdk.serverside.UserData; import java.util.ArrayList; import java.util.Arrays; import java.util.HashMap; import java.util.List; public class ConversionsApiExample { public static final String ACCESS_TOKEN = ""; public static final String PIXEL_ID = ""; public static void main(String[] args) { APIContext context = new APIContext(ACCESS_TOKEN).enableDebug(true); context.setLogger(System.out); List events = new ArrayList<>(); UserData userData_0 = new UserData() .emails(Arrays.asList("7b17fb0bd173f625b58636fb796407c22b3d16fc78302d79f0fd30c2fc2fc068")) .phones(Arrays.asList("d36e83082288d9f2c98b3f3f87cd317a31e95527cb09972090d3456a7430ad4d")); CustomData customData_0 = new CustomData() .value(142.52f) .currency("USD"); Event event_0 = new Event() .eventName("Purchase") .eventTime(1758140017L) .userData(userData_0) .customData(customData_0) .actionSource("website"); events.add(event_0); EventRequest eventRequest = new EventRequest(PIXEL_ID, context) .data(events); try { EventResponse response = eventRequest.execute(); System.out.printf("Standard API response : %s ", response); } catch (APIException e) { e.printStackTrace(); } } }
top of page

Shipping Policy

A legal disclaimer

The explanations and information provided on this page are only general and high-level explanations and information on how to write your own document of a Shipping Policy. You should not rely on this article as legal advice or as recommendations regarding what you should actually do, because we cannot know in advance what are the specific shipping policies that you wish to establish between your business and your customers. We recommend that you seek legal advice to help you understand and to assist you in the creation of your own Shipping Policy.

Shipping Policy - the basics

Having said that, a Shipping Policy is a legally binding document that is meant to establish the legal relations between you and your customers. It is the legal framework for presenting your obligations to your customers, but also to address different possible scenarios that may occur, and what happens in each and every case. 

 

A Shipping Policy is a good practice and it helps both sides - you and your customers. Your customers may benefit from being informed about what they can expect from your service. You may benefit because people may be likely to shop with you if you have a clear Shipping Policy in place since there won't be any questions about your shipping timeframes or processes.

What to include in the Shipping Policy

Generally speaking, a Shipping Policy often addresses these types of issues: the timeframe for processing orders; the shipping costs; different domestic and international shipping solutions; potential service interruptions; and much, much more.

bottom of page