api

Update Fill Request

Amend the fields of an existing Fill Request, such as for correcting an address or changing the shipping method to expedite your order.<br/><br/>When using this endpoint, all the Fill Request fields must be provided with their appropriate values even if they are not to be updated.

post/api/v1/update_request

Request body

request_idstring

Request id

address_from_companystring

Desired name to display in the Return section of shipping label

shipping_method'standard' | 'priority' | 'overnight' | 'usps_ground_advantage' | 'usps_priority' | 'usps_priority_express' | 'fedex_ground' | 'fedex_2_day' | 'fedex_smart_post' | 'fedex_standard_overnight' | 'fedex_priority_overnight' | 'ups_mail_innovations_domestic' | 'ups_next_day_air' | 'ups_next_day_air_saver' | 'ups_second_day_air' | 'ups_ground' | 'dhl_ecommerce_parcels_ground' | 'dhl_ecommerce_parcels_expedited' | 'dhl_ecommerce_parcels_expedited_max' | 'dhl_ecommerce_parcel_plus_ground' | 'dhl_ecommerce_parcel_plus_expedited' | 'dhl_ecommerce_parcel_plus_expedited_max'

Shipping method

signature_confirmationboolean

Is signature required by patient upon delivery

notesstring
address_to_namestring required

Patient’s name as it should appear on shipping label

address_to_companystring

Desired return name to display on package shipping label sent to patient

address_to_street1string required

Street 1 of patient’s shipping address

address_to_street2string

Street 2 of patient’s shipping address (if applicable)

address_to_citystring required

City of patient’s shipping address

address_to_statestring required

State of patient’s shipping address

address_to_zipstring required

Zip code of patient’s shipping address

address_to_countrystring

Use US for all requests

address_to_phonestring required

Patient’s phone number

address_to_emailstring

Patient’s email address

Example request

{
  "request_id": "fill_request_aecafb34372151077db8",
  "address_from_company": "Avengers",
  "shipping_method": "usps_ground_advantage",
  "notes": "Here are some special instructions on how to fill this order",
  "address_to_name": "Peter Parker",
  "address_to_street1": "1700 S Amphlett Blvd",
  "address_to_street2": "#221",
  "address_to_city": "San Mateo",
  "address_to_state": "CA",
  "address_to_zip": "94402",
  "address_to_country": "US",
  "address_to_phone": "(347) 610-8896",
  "address_to_email": "peter.parker@avengers.com"
}

Response

Accepted

Changes