Shipping Query URL
After the user selects their address in the Akifast, a request is sent to the merchant to inquire about the shipping options that will deliver to that address. The URL to which the request will be sent is determined by the query_shipping_option_url
parameter sent when the payment session is created by the merchant.
Akifast sends a POST
request to the merchant's specified query_shipping_option_url
with the parameters listed below.
Query Parameters
order_id
string
Order number on the merchant side.
session_token
string
Payment session key obtained by the merchant.
basket_id
string
Basket identifier.
shipping_address.name
string
Name of the address holder.
shipping_address.surname
string
Surname of the address holder.
shipping_address.phone_number
string
Phone number of the address holder.
shipping_address.postal_code
string
Postal code of the address.
shipping_address.notes
string
Additional notes about the address.
shipping_address.company_name
string
Company name if the address is a corporate one.
shipping_address.address_title
string
Description of the address.
shipping_address.tax_no
string
Tax number for a corporate address.
shipping_address.tax_office
string
Tax office for a corporate address.
shipping_address.is_default
boolean
Indicator for the default address.
shipping_address.line
string
Address information.
shipping_address.address_type
string
Address type (CUSTOMER, RETAIL_STORE).
shipping_address.country.name
string
Country name.
shipping_address.country.code
string
Country code.
shipping_address.city.name
string
City name.
shipping_address.city.code
string
City code.
shipping_address.town.name
string
Town name.
shipping_address.town.code
string
Town code.
shipping_address.district.name
string
District name.
shipping_address.status
string
Status of the address.
shipping_address.hash_data
string
Unique hash code for the address.
billing_address.name
string
Name of the billing address.
billing_address.surname
string
Surname of the billing address.
billing_address.phone_number
string
Phone number of the billing address.
billing_address.postal_code
string
Postal code of the billing address.
billing_address.notes
string
Additional notes about the billing address.
billing_address.company_name
string
Company name if the billing address is a corporate one.
billing_address.address_title
string
Description of the billing address.
billing_address.tax_no
string
Tax number for a corporate billing address.
billing_address.tax_office
string
Tax office for a corporate billing address.
billing_address.is_default
boolean
Indicator for the default billing address.
billing_address.line
string
Billing address information.
billing_address.address_type
string
Billing address type (CUSTOMER, RETAIL_STORE).
billing_address.country.name
string
Billing country name.
billing_address.country.code
string
Billing country code.
billing_address.city.name
string
Billing city name.
billing_address.city.code
string
Billing city code.
billing_address.town.name
string
Billing town name.
billing_address.town.code
string
Billing town code.
billing_address.district.name
string
Billing district name.
billing_address.status
string
Status of the billing address.
billing_address.hash_data
string
Unique hash code for the billing address.
conversation_id
string
Private conversation identifier.
Example Request
Response Parameters
count
string
Number of shipping options.
shipping_options[0].description
string
Description of the shipping option.
shipping_options[0].logo_url
string
URL of the image representing the shipping company.
shipping_options[0].name
string
Name of the shipping company.
shipping_options[0].key
string
Akinon key of the shipping company.
shipping_options[0].shipping_amount
number
Shipping cost.
Example Response
Last updated
Was this helpful?