@shipengine/connect-carrier-api
Version:
This is the typescript/javascript definitions for carrier api
10 lines (8 loc) • 415 B
text/typescript
import { BaseRequest } from './base-request';
/** @description Basic structure for a request to validate inbound data */
export interface ValidateInboundDataRequest 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[]>;
}