@shipengine/connect-carrier-api
Version:
This is the typescript/javascript definitions for carrier api
10 lines (8 loc) • 471 B
text/typescript
import { BaseRequest } from './base-request';
/** @description Basic structure for a request to normalize tracking data from inbound tracking data requests (e.g. webhooks) */
export interface NormalizeTrackingDataRequest extends BaseRequest {
/** @description The request's data, e.g. the body of the webhook http request */
data: string;
/** @description Headers sent with the inbound request if it was received via http */
headers: Record<string, string[]>;
}