GiftCardActivitiesApi giftCardActivitiesApi = client.getGiftCardActivitiesApi();
GiftCardActivitiesApi
Lists gift card activities. By default, you get gift card activities for all gift cards in the seller's account. You can optionally specify query parameters to filter the list. For example, you can get a list of gift card activities for a gift card, for all gift cards in a specific region, or for activities within a time window.
CompletableFuture<ListGiftCardActivitiesResponse> listGiftCardActivitiesAsync(
final String giftCardId,
final String type,
final String locationId,
final String beginTime,
final String endTime,
final Integer limit,
final String cursor,
final String sortOrder)
Parameter | Type | Tags | Description |
---|---|---|---|
giftCardId |
String |
Query, Optional | If a gift card ID is provided, the endpoint returns activities related to the specified gift card. Otherwise, the endpoint returns all gift card activities for the seller. |
type |
String |
Query, Optional | If a type is provided, the endpoint returns gift card activities of the specified type. Otherwise, the endpoint returns all types of gift card activities. |
locationId |
String |
Query, Optional | If a location ID is provided, the endpoint returns gift card activities for the specified location. Otherwise, the endpoint returns gift card activities for all locations. |
beginTime |
String |
Query, Optional | The timestamp for the beginning of the reporting period, in RFC 3339 format. This start time is inclusive. The default value is the current time minus one year. |
endTime |
String |
Query, Optional | The timestamp for the end of the reporting period, in RFC 3339 format. This end time is inclusive. The default value is the current time. |
limit |
Integer |
Query, Optional | If a limit is provided, the endpoint returns the specified number of results (or fewer) per page. The maximum value is 100. The default value is 50. For more information, see Pagination. |
cursor |
String |
Query, Optional | A pagination cursor returned by a previous call to this endpoint. Provide this cursor to retrieve the next set of results for the original query. If a cursor is not provided, the endpoint returns the first page of the results. For more information, see Pagination. |
sortOrder |
String |
Query, Optional | The order in which the endpoint returns the activities, based on created_at .- ASC - Oldest to newest.- DESC - Newest to oldest (default). |
ListGiftCardActivitiesResponse
giftCardActivitiesApi.listGiftCardActivitiesAsync(null, null, null, null, null, null, null, null).thenAccept(result -> {
// TODO success callback handler
}).exceptionally(exception -> {
// TODO failure callback handler
return null;
});
Creates a gift card activity to manage the balance or state of a gift card.
For example, you create an ACTIVATE
activity to activate a gift card with an initial balance
before the gift card can be used.
CompletableFuture<CreateGiftCardActivityResponse> createGiftCardActivityAsync(
final CreateGiftCardActivityRequest body)
Parameter | Type | Tags | Description |
---|---|---|---|
body |
CreateGiftCardActivityRequest |
Body, Required | An object containing the fields to POST for the request. See the corresponding object definition for field details. |
CreateGiftCardActivityResponse
GiftCardActivityActivate giftCardActivityActivate = new GiftCardActivityActivate.Builder()
.orderId("jJNGHm4gLI6XkFbwtiSLqK72KkAZY")
.lineItemUid("eIWl7X0nMuO9Ewbh0ChIx")
.build();
GiftCardActivity giftCardActivity = new GiftCardActivity.Builder(
"ACTIVATE",
"81FN9BNFZTKS4")
.giftCardId("gftc:6d55a72470d940c6ba09c0ab8ad08d20")
.activateActivityDetails(giftCardActivityActivateActivityDetails)
.build();
CreateGiftCardActivityRequest body = new CreateGiftCardActivityRequest.Builder(
"U16kfr-kA70er-q4Rsym-7U7NnY",
giftCardActivity)
.build();
giftCardActivitiesApi.createGiftCardActivityAsync(body).thenAccept(result -> {
// TODO success callback handler
}).exceptionally(exception -> {
// TODO failure callback handler
return null;
});