Skip to content

Latest commit

 

History

History
332 lines (240 loc) · 14.7 KB

OffersMemberListsApi.md

File metadata and controls

332 lines (240 loc) · 14.7 KB

sparkfly_client.OffersMemberListsApi

All URIs are relative to https://api.sparkfly.com

Method HTTP request Description
delete_offer_member_lists DELETE /v1.0/offers/{offer_id}/member_lists Remove eligible Member Lists from offer
get_offer_member_lists GET /v1.0/offers/{offer_id}/member_lists Eligible Member Lists List
set_offer_member_lists POST /v1.0/offers/{offer_id}/member_lists Set eligible Member Lists for offer
update_offer_member_lists PUT /v1.0/offers/{offer_id}/member_lists Add eligible Member Lists for offer

delete_offer_member_lists

OfferMemberListsResponse delete_offer_member_lists(offer_id, offer_member_list_ids_input_request=offer_member_list_ids_input_request)

Remove eligible Member Lists from offer

Example

  • Api Key Authentication (X-Auth-Token):
import time
import os
import sparkfly_client
from sparkfly_client.models.offer_member_list_ids_input_request import OfferMemberListIdsInputRequest
from sparkfly_client.models.offer_member_lists_response import OfferMemberListsResponse
from sparkfly_client.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to https://api.sparkfly.com
# See configuration.py for a list of all supported configuration parameters.
configuration = sparkfly_client.Configuration(
    host = "https://api.sparkfly.com"
)

# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.

# Configure API key authorization: X-Auth-Token
configuration.api_key['X-Auth-Token'] = os.environ["API_KEY"]

# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['X-Auth-Token'] = 'Bearer'

# Enter a context with an instance of the API client
with sparkfly_client.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = sparkfly_client.OffersMemberListsApi(api_client)
    offer_id = 56 # int | The id of the offer
    offer_member_list_ids_input_request = sparkfly_client.OfferMemberListIdsInputRequest() # OfferMemberListIdsInputRequest | Member List IDs to remove from Offer (optional)

    try:
        # Remove eligible Member Lists from offer
        api_response = api_instance.delete_offer_member_lists(offer_id, offer_member_list_ids_input_request=offer_member_list_ids_input_request)
        print("The response of OffersMemberListsApi->delete_offer_member_lists:\n")
        pprint(api_response)
    except Exception as e:
        print("Exception when calling OffersMemberListsApi->delete_offer_member_lists: %s\n" % e)

Parameters

Name Type Description Notes
offer_id int The id of the offer
offer_member_list_ids_input_request OfferMemberListIdsInputRequest Member List IDs to remove from Offer [optional]

Return type

OfferMemberListsResponse

Authorization

X-Auth-Token

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

HTTP response details

Status code Description Response headers
201 Successful creation * Cache-Control -
* Content-Length -
* Content-Type -
* Date -
* Etag -
* Location -
* Server -
* Set-Cookie -
* X-Request-Id -
* X-Runtime -
* X-Ua-Compatible -
400 Error parsing request * Cache-Control -
* Content-Length -
* Content-Type -
* Date -
* Server -
* Set-Cookie -
* X-Request-Id -
* X-Runtime -
* X-Ua-Compatible -
401 Unauthorized * Cache-Control -
* Content-Length -
* Content-Type -
* Date -
* Server -
* X-Request-Id -
* X-Runtime -
* X-Ua-Compatible -

[Back to top] [Back to API list] [Back to Model list] [Back to README]

get_offer_member_lists

OfferMemberListsResponse get_offer_member_lists(offer_id)

Eligible Member Lists List

Example

  • Api Key Authentication (X-Auth-Token):
import time
import os
import sparkfly_client
from sparkfly_client.models.offer_member_lists_response import OfferMemberListsResponse
from sparkfly_client.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to https://api.sparkfly.com
# See configuration.py for a list of all supported configuration parameters.
configuration = sparkfly_client.Configuration(
    host = "https://api.sparkfly.com"
)

# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.

# Configure API key authorization: X-Auth-Token
configuration.api_key['X-Auth-Token'] = os.environ["API_KEY"]

# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['X-Auth-Token'] = 'Bearer'

# Enter a context with an instance of the API client
with sparkfly_client.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = sparkfly_client.OffersMemberListsApi(api_client)
    offer_id = 56 # int | The id of the offer

    try:
        # Eligible Member Lists List
        api_response = api_instance.get_offer_member_lists(offer_id)
        print("The response of OffersMemberListsApi->get_offer_member_lists:\n")
        pprint(api_response)
    except Exception as e:
        print("Exception when calling OffersMemberListsApi->get_offer_member_lists: %s\n" % e)

Parameters

Name Type Description Notes
offer_id int The id of the offer

Return type

OfferMemberListsResponse

Authorization

X-Auth-Token

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

HTTP response details

Status code Description Response headers
200 Member Lists to be returned * Cache-Control -
* Content-Length -
* Date -
* Etag -
* Server -
* Set-Cookie -
* X-Auth-Token -
* X-Request-Id -
* X-Runtime -
* X-Ua-Compatible -
401 Unauthorized * Cache-Control -
* Content-Length -
* Content-Type -
* Date -
* Server -
* X-Request-Id -
* X-Runtime -
* X-Ua-Compatible -

[Back to top] [Back to API list] [Back to Model list] [Back to README]

set_offer_member_lists

OfferMemberListsResponse set_offer_member_lists(offer_id, offer_member_list_ids_input_request=offer_member_list_ids_input_request)

Set eligible Member Lists for offer

Example

  • Api Key Authentication (X-Auth-Token):
import time
import os
import sparkfly_client
from sparkfly_client.models.offer_member_list_ids_input_request import OfferMemberListIdsInputRequest
from sparkfly_client.models.offer_member_lists_response import OfferMemberListsResponse
from sparkfly_client.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to https://api.sparkfly.com
# See configuration.py for a list of all supported configuration parameters.
configuration = sparkfly_client.Configuration(
    host = "https://api.sparkfly.com"
)

# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.

# Configure API key authorization: X-Auth-Token
configuration.api_key['X-Auth-Token'] = os.environ["API_KEY"]

# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['X-Auth-Token'] = 'Bearer'

# Enter a context with an instance of the API client
with sparkfly_client.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = sparkfly_client.OffersMemberListsApi(api_client)
    offer_id = 56 # int | The id of the offer
    offer_member_list_ids_input_request = sparkfly_client.OfferMemberListIdsInputRequest() # OfferMemberListIdsInputRequest | Member List IDs to set to Offer (optional)

    try:
        # Set eligible Member Lists for offer
        api_response = api_instance.set_offer_member_lists(offer_id, offer_member_list_ids_input_request=offer_member_list_ids_input_request)
        print("The response of OffersMemberListsApi->set_offer_member_lists:\n")
        pprint(api_response)
    except Exception as e:
        print("Exception when calling OffersMemberListsApi->set_offer_member_lists: %s\n" % e)

Parameters

Name Type Description Notes
offer_id int The id of the offer
offer_member_list_ids_input_request OfferMemberListIdsInputRequest Member List IDs to set to Offer [optional]

Return type

OfferMemberListsResponse

Authorization

X-Auth-Token

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

HTTP response details

Status code Description Response headers
201 Successful creation * Cache-Control -
* Content-Length -
* Content-Type -
* Date -
* Etag -
* Location -
* Server -
* Set-Cookie -
* X-Request-Id -
* X-Runtime -
* X-Ua-Compatible -
400 Error parsing request * Cache-Control -
* Content-Length -
* Content-Type -
* Date -
* Server -
* Set-Cookie -
* X-Request-Id -
* X-Runtime -
* X-Ua-Compatible -
401 Unauthorized * Cache-Control -
* Content-Length -
* Content-Type -
* Date -
* Server -
* X-Request-Id -
* X-Runtime -
* X-Ua-Compatible -

[Back to top] [Back to API list] [Back to Model list] [Back to README]

update_offer_member_lists

OfferMemberListsResponse update_offer_member_lists(offer_id, offer_member_list_ids_input_request=offer_member_list_ids_input_request)

Add eligible Member Lists for offer

Example

  • Api Key Authentication (X-Auth-Token):
import time
import os
import sparkfly_client
from sparkfly_client.models.offer_member_list_ids_input_request import OfferMemberListIdsInputRequest
from sparkfly_client.models.offer_member_lists_response import OfferMemberListsResponse
from sparkfly_client.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to https://api.sparkfly.com
# See configuration.py for a list of all supported configuration parameters.
configuration = sparkfly_client.Configuration(
    host = "https://api.sparkfly.com"
)

# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.

# Configure API key authorization: X-Auth-Token
configuration.api_key['X-Auth-Token'] = os.environ["API_KEY"]

# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['X-Auth-Token'] = 'Bearer'

# Enter a context with an instance of the API client
with sparkfly_client.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = sparkfly_client.OffersMemberListsApi(api_client)
    offer_id = 56 # int | The id of the offer
    offer_member_list_ids_input_request = sparkfly_client.OfferMemberListIdsInputRequest() # OfferMemberListIdsInputRequest | Member List IDs to Add to Offer (optional)

    try:
        # Add eligible Member Lists for offer
        api_response = api_instance.update_offer_member_lists(offer_id, offer_member_list_ids_input_request=offer_member_list_ids_input_request)
        print("The response of OffersMemberListsApi->update_offer_member_lists:\n")
        pprint(api_response)
    except Exception as e:
        print("Exception when calling OffersMemberListsApi->update_offer_member_lists: %s\n" % e)

Parameters

Name Type Description Notes
offer_id int The id of the offer
offer_member_list_ids_input_request OfferMemberListIdsInputRequest Member List IDs to Add to Offer [optional]

Return type

OfferMemberListsResponse

Authorization

X-Auth-Token

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

HTTP response details

Status code Description Response headers
201 Successful creation * Cache-Control -
* Content-Length -
* Content-Type -
* Date -
* Etag -
* Location -
* Server -
* Set-Cookie -
* X-Request-Id -
* X-Runtime -
* X-Ua-Compatible -
400 Error parsing request * Cache-Control -
* Content-Length -
* Content-Type -
* Date -
* Server -
* Set-Cookie -
* X-Request-Id -
* X-Runtime -
* X-Ua-Compatible -
401 Unauthorized * Cache-Control -
* Content-Length -
* Content-Type -
* Date -
* Server -
* X-Request-Id -
* X-Runtime -
* X-Ua-Compatible -

[Back to top] [Back to API list] [Back to Model list] [Back to README]