Skip to main content

🚀 Quickstart

Connect to PromoStandards with Nango using your Vantage Apparel-issued PromoStandards ID and password.
1

Create an integration

In Nango (free signup), go to Integrations -> Configure New Integration -> Vantage Apparel.
2

Authorize PromoStandards

Go to Connections -> Add Test Connection -> Authorize, then enter your PromoStandards ID and password (see the connect guide below). Later, you’ll let your users do the same directly from your app.
3

Implement Nango in your app

Follow our Auth implementation guide to integrate Nango in your app.To obtain your own production credentials, follow the connect guide linked below.

📚 PromoStandards guides

Official docs: PromoStandards Order Status 2.0.0 specification

API gotchas

  • There is no auth endpoint. PromoStandards authenticates every SOAP call by embedding id and password fields directly inside the request body — never as an HTTP header, never via OAuth or a session token. Nango’s generic proxy (header/body templating) can’t inject credentials into an arbitrary SOAP envelope, so you can’t just call nango.proxy() with a body template and expect credentials to be filled in automatically.
  • Build the SOAP call yourself in a custom action/sync. Fetch the connection’s raw credentials with nango.getConnection(), then hand-construct the SOAP envelope for the operation you need (GetOrderStatusRequest, GetAccountsByEmailRequest, etc.), embedding the id/password fields yourself, and send it via nango.proxy() with the matching SOAPAction header and Content-Type: text/xml; charset=utf-8.
  • The same PromoStandards ID/password authenticates Order Status, Shipment Notification, and Customer Lookup for Vantage Apparel — one connection covers all three services. SOAPAction is case-sensitive: getOrderStatus for Order Status, getAccountsByEmail for Customer Lookup (other casings like GetAccountsByEmailRequest are rejected with an HTTP 500, not a clean SOAP fault).
  • queryType on Order Status is a fixed enum, not a free-text field: poSearch, soSearch, lastUpdate, allOpen, allOpenIssues. An unrecognized value returns a ServiceMessage with code 200 (“queryType not found”) rather than an auth error — check the code, not just the HTTP status, since this API always returns HTTP 200 regardless of business outcome.
  • A “no results” response is not an authentication failure. On Order Status, code 220 (“No Orders were found for the requested criteria.”) means your credentials worked but nothing matched; on Customer Lookup, code 130 (“No Accounts found”) means the same. Only an explicit auth-failure code (15 on Order Status, 105 on Customer Lookup) means the id/password pair itself was rejected. Nango’s credential check for this integration applies exactly this distinction.

Example: calling a SOAP endpoint from an action

This action calls Customer Lookup’s getAccountsByEmail operation. It fetches the connection’s raw id/password, embeds them in the SOAP envelope, and sends it via nango.proxy() with the matching SOAPAction header:
The same pattern applies to Order Status (GetOrderStatusRequest, soapaction: '"getOrderStatus"', endpoint /OrderStatusService.svc) and Shipment Notification — swap the request element, SOAPAction, and endpoint for the operation you need.

🧩 Pre-built syncs and actions

Enable them in your dashboard. Extend and customize to fit your needs. No pre-built syncs or actions available yet.
Not seeing the integration you need? Build your own independently.