Skip to content

Store adapter — Infusionsoft

The adapter object contains properties for connecting to the Infusionsoft API.

Parent object: a store with property "platform" : "infusionsoft"

Required properties

The following adapter properties are required for Infusionsoft stores.

app_name

Propertyapp_name
NameApplication Name
DescriptionThe subdomain of the Infusionsoft store URL
Data typestring
More infoCannot contain special characters . : or /
ExampleIf the store URL is "http://mystore.infusionsoft.com", the application name is "mystore"
Required?Yes

password

Propertypassword
NamePassword
DescriptionInfusionsoft password
Data typestring
Required?Yes

username

Propertyusername
NameUsername
DescriptionInfusionsoft user ID or email address
Data typestring
Required?Yes

vendor_api_key

Propertyvendor_api_key
NameVendor API Key
Data typestring
Required?Yes

Optional properties

The following adapter properties are optional for Infusionsoft stores.

pay_status

Propertypay_status
NamePay Status
DescriptionImport orders only with this status
Data typestring
Accepted values
  • "1" — for Paid
  • "none" — for Not Required
Example"1"

shipment_date_custom_field_name

Propertyshipment_date_custom_field_name
NameShipping Date Field
DescriptionCustom field used for the shipment date
Data typestring

tracking_number_custom_field_name

Propertytracking_number_custom_field_name
NameTracking Number Field
DescriptionCustom field used for the order tracking number
Data typestring

Example

Example: create a new Infusionsoft store
curl -X POST \
    -H "Authorization: Bearer $JWT_TOKEN" \
    -H "Content-Type: application/json" \
    https://api.getdropstream.com/stores \
    -d @- <<EOF
{ "customer_id": "3775",
  "name": "Your Infusionsoft Store",
  "platform": "infusionsoft",
  "adapter": {
    "app_name": "abc123",
    "username": "abc123",
    "password": "abc123",
    "vendor_api_key": "abc123",
    "pay_status": "none",
    "tracking_number_custom_field_name": "myfield1",
    "shipment_date_custom_field_name": "myfield2"
  }
}
EOF

For details about this request type, see: Create a new store.