gplsek / fitmoostore

fitmostore
GNU General Public License v2.0
0 stars 0 forks source link

Print shipping labels API #21

Closed jg77merten closed 10 years ago

jg77merten commented 10 years ago

1) Set default pack dimensions http://fitmoo.plsekwerks.com/admin/endicia/set_default_dimensions 2) Set default weigth by product type http://fitmoo.plsekwerks.com/admin/commerce/config/shipping/set_shipping_fee

Label prints by 2 calls a) Send data and recieve shipping type (POST call) all settings store at SESSION['endicia'] Many values can not be sended and been calculated or gets from config. b) After first call send SESSION['endicia'] and choosed shipping type. We got from 1st call response some like this: "mail_class_rates":{ "First":"2.93", "Priority":"6.51", "Express":"30", "LibraryMail":"2.56", "MediaMail":"2.69", "ParcelSelect":"6.68", "StandardPost":"6.73" } send any of that parameter in second call. For example ?mail_class=MediaMail P.S. a) After second call SESSION['endicia'] was killed and you can create call #1 again. b) "delivery_address":{"first_name" and "delivery_address":{"last_name"] can be empty if you send "delivery_address":{"full_name"] c) After 2nd call TrackNum and LabelUrl saving to the order: field_tracking and field_shipping_label_url fields =====1ST CALL (FULL DATA)====

POST http://fitmoo.plsekwerks.com/fit_store/endicia { "order_id":"53", "pickup_address":{ "first_name":"Max", "last_name":"Klimchuk", "organisation_name":"Maksim Klimchuk", "country":"US", "thoroughfare":"767 5th Ave", "premise":"", "locality":"New York", "administrative_area":"NY", "postal_code":"10153" }, "pickup_phone":"2123361440", "pickup_email":"sabre@tut.by", "delivery_address":{ <--(optional can be calculated from order) "first_name":"Maksim",
"last_name":"Klimchuk", "organisation_name":"Maksim Klimchuk", "country":"US", "thoroughfare":"3200 S Las Vegas Blvd", "premise":"", "locality":"Las Vegas", "administrative_area":"NV", "postal_code":"89109" }, "delivery_phone":"7025779740", "delivery_email":"sabre@tut.by", "package_info":{ <--(optional can be calculated from order and config) "description":"shirt", "declared_value":"50", "length":"4", "width":"4", "height":"3", "mail_shape":"Parcel" }, "ship_options":{ "date_advance":"0", "insurance":"None" }, "customs_info":{ <--(optional can be calculated from order and config) "CustomsItem1":{ "Description":"shirt", "Quantity":"1", "Weight":"10", "Value":"50" } } } -- RESPONSE -- { "package":{ "description":"shirt", "declared_value":"50", "length":"4", "width":"4", "height":"3", "mail_shape":"Parcel", "weight":"10", "date_advance":"0", "insurance":"None", "CustomsItem1":{ "Description":"shirt", "Quantity":"1", "Weight":"10", "Value":"50" }, "CustomsItem2":{ "Description":"", "Quantity":"", "Weight":"", "Value":"" }, "CustomsItem3":{ "Description":"", "Quantity":"", "Weight":"", "Value":"" }, "CustomsItem4":{ "Description":"", "Quantity":"", "Weight":"", "Value":"" }, "CustomsItem5":{ "Description":"", "Quantity":"", "Weight":"", "Value":"" } }, "pickup_address":{ "first_name":"Max", "last_name":"Klimchuk", "company":"Maksim Klimchuk", "street1":"767 5th Ave", "street2":"", "city":"New York", "zone":"NY", "postal_code":"10153", "country":"US", "phone":"2123361440", "email":"sabre@tut.by" }, "delivery_address":{ "first_name":"Maksim", "last_name":"Klimchuk", "company":"Maksim Klimchuk", "street1":"3200 S Las Vegas Blvd", "street2":"", "city":"Las Vegas", "zone":"NV", "postal_code":"89109", "country":"US", "phone":"7025779740", "email":"sabre@tut.by" }, "mail_class_rates":{ "First":"2.93", "Priority":"6.51", "Express":"30", "LibraryMail":"2.56", "MediaMail":"2.69", "ParcelSelect":"6.68", "StandardPost":"6.73" }, "account_balance":"$178.90" }

jg77merten commented 10 years ago

=======2nd call for recieve shipping label========

GET http://fitmoo.plsekwerks.com/fit_store/endicia?mail_class=MediaMail Cookie: SESSe889a326a5c093a77c387b336cb83f72=67r_27yn9avtrGtmrKG94u0x6-VMVgQ7BH-nL8hchUc X-CSRF-Token: Sz047IfUfQ53eKaLP05fOhLwRX0odga-PGA_LAhDh1c

-- response --

{"track_number":"9499907123456123456781","url":"http://fitmoo.plsekwerks.com/endicia/print/endicia_labels/label-cloud-9499907123456123456781.gif"}

jg77merten commented 10 years ago

=========1st call without optional parameters===========

POST http://fitmoo.plsekwerks.com/fit_store/endicia Cookie: SESSe889a326a5c093a77c387b336cb83f72=67r_27yn9avtrGtmrKG94u0x6-VMVgQ7BH-nL8hchUc X-CSRF-Token: Sz047IfUfQ53eKaLP05fOhLwRX0odga-PGA_LAhDh1c Content-Type: application/json { "order_id":"53", "pickup_address":{ "first_name":"Max", "last_name":"Klimchuk", "organisation_name":"Maksim Klimchuk", "country":"US", "thoroughfare":"767 5th Ave", "premise":"", "locality":"New York", "administrative_area":"NY", "postal_code":"10153" }, "pickup_phone":"2123361440", "pickup_email":"sabre@tut.by", "delivery_phone":"7025779740", "delivery_email":"sabre@tut.by", "ship_options":{ "date_advance":"0", "insurance":"None" } }

-- response --

{"package":{"weight":"10","mail_shape":"Parcel","description":"clothing","declared_value":23,"length":"3","height":"3","width":"3","date_advance":"0","insurance":"None","CustomsItem1":{"Description":"clothing","Quantity":"1.00","Weight":"10","Value":0}},"pickup_address":{"first_name":"Max","last_name":"Klimchuk","company":"Maksim Klimchuk","street1":"767 5th Ave","street2":"","city":"New York","zone":"NY","postal_code":"10153","country":"US","phone":"2123361440","email":"sabre@tut.by"},"delivery_address":{"first_name":"George","last_name":"Plsek","company":null,"street1":"410 N Rios","street2":"","city":"Solana Beach","zone":"CA","postal_code":"92075","country":"US","phone":"7025779740","email":"sabre@tut.by"},"mail_class_rates":{"First":"2.93","Priority":"6.51","Express":"30","LibraryMail":"2.56","MediaMail":"2.69","ParcelSelect":"6.68","StandardPost":"6.73"},"account_balance":"$178.90"}

jg77merten commented 10 years ago

=======2nd call==========

GET http://fitmoo.plsekwerks.com/fit_store/endicia?mail_class=LibraryMail Cookie: SESSe889a326a5c093a77c387b336cb83f72=67r_27yn9avtrGtmrKG94u0x6-VMVgQ7BH-nL8hchUc X-CSRF-Token: Sz047IfUfQ53eKaLP05fOhLwRX0odga-PGA_LAhDh1c

-- response --

{"track_number":"9499907123456123456781","url":"http://fitmoo.plsekwerks.com/endicia/print/endicia_labels/label-cloud-9499907123456123456781.gif"}

jg77merten commented 10 years ago

=====REFUND==== DELETE http://fitmoostore.loc/fit_store/endicia/9499907123456123456781 Cookie: SESSb22f1e1c07a26da425a441410bf4eb41=LwYBa_EPJMo-uQZMCVo6Jzsb60PO8WF_5dBaKjMahF4 X-CSRF-Token: 1McKdEUk4vTtUdHIij3hK6dws675pOXV6h2OigdW5xc -- response -- ["Your refund request(s) were processed successfully."]

jg77merten commented 10 years ago

=====TRACKING==== PUT http://fitmoostore.loc/fit_store/endicia/9499907123456123456781 (TRACK_NUM) Cookie: SESSb22f1e1c07a26da425a441410bf4eb41=LwYBa_EPJMo-uQZMCVo6Jzsb60PO8WF_5dBaKjMahF4 X-CSRF-Token: 1McKdEUk4vTtUdHIij3hK6dws675pOXV6h2OigdW5xc Content-Type: application/json --RESPONSE-- {"STATUS_1":["Arrival at Post Office June 02 2011 10:11 am NORTH HOLLYWOOD CA 91605"],"STATUS_2":["Forward Expired June 02 2011 6:59 am NORTH HOLLYWOOD CA"],"STATUS_3":["Processed through Sort Facility June 01 2011 4:53 pm BELL GARDENS CA 90201"],"STATUS_4":["Electronic Shipping Info Received May 31 2011"],"STATUS_5":["Shipment Accepted May 31 2011 4:25 pm PALO ALTO CA 94303"]}