Skip to content

Latest commit

 

History

History
111 lines (82 loc) · 5 KB

gift-card-activities.md

File metadata and controls

111 lines (82 loc) · 5 KB

Gift Card Activities

gift_card_activities_api = client.gift_card_activities

Class Name

GiftCardActivitiesApi

Methods

List Gift Card Activities

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.

def list_gift_card_activities(self,
                             gift_card_id=None,
                             mtype=None,
                             location_id=None,
                             begin_time=None,
                             end_time=None,
                             limit=None,
                             cursor=None,
                             sort_order=None)

Parameters

Parameter Type Tags Description
gift_card_id str 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.
mtype str 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.
location_id str 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.
begin_time str 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.
end_time str 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 int 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 str 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.
sort_order str Query, Optional The order in which the endpoint returns the activities, based on created_at.

- ASC - Oldest to newest.
- DESC - Newest to oldest (default).

Response Type

This method returns a ApiResponse instance. The body property of this instance returns the response data which is of type List Gift Card Activities Response.

Example Usage

result = gift_card_activities_api.list_gift_card_activities()
print(result)

if result.is_success():
    print(result.body)
elif result.is_error():
    print(result.errors)

Create Gift Card Activity

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.

def create_gift_card_activity(self,
                             body)

Parameters

Parameter Type Tags Description
body Create Gift Card Activity Request Body, Required An object containing the fields to POST for the request.

See the corresponding object definition for field details.

Response Type

This method returns a ApiResponse instance. The body property of this instance returns the response data which is of type Create Gift Card Activity Response.

Example Usage

body = {
    'idempotency_key': 'U16kfr-kA70er-q4Rsym-7U7NnY',
    'gift_card_activity': {
        'type': 'ACTIVATE',
        'location_id': '81FN9BNFZTKS4',
        'gift_card_id': 'gftc:6d55a72470d940c6ba09c0ab8ad08d20',
        'activate_activity_details': {
            'order_id': 'jJNGHm4gLI6XkFbwtiSLqK72KkAZY',
            'line_item_uid': 'eIWl7X0nMuO9Ewbh0ChIx'
        }
    }
}

result = gift_card_activities_api.create_gift_card_activity(body)
print(result)

if result.is_success():
    print(result.body)
elif result.is_error():
    print(result.errors)