| POST | /api/UpdateCustomer |
|---|
// @ts-nocheck
// @DataContract
export class BaseRequest
{
/** @description This is your AIM API Key provided by Tri-Tech */
// @DataMember
// @ApiMember(DataType="string", Description="This is your AIM API Key provided by Tri-Tech", IsRequired=true, Name="ApiKey", ParameterType="Header")
public ApiKey: string;
/** @description The OAuthToken token return by AeServices30 */
// @DataMember
// @ApiMember(DataType="string", Description="The OAuthToken token return by AeServices30", IsRequired=true, Name="OAuthToken", ParameterType="Header")
public OAuthToken: string;
/** @description The Device ID of the Mobile Device. Not used for non-mobile devices. */
// @DataMember
// @ApiMember(DataType="string", Description="The Device ID of the Mobile Device. Not used for non-mobile devices.", Name="DeviceId", ParameterType="Header")
public DeviceId?: string;
/** @description An identifier for your integration */
// @DataMember
// @ApiMember(DataType="string", Description="An identifier for your integration", IsRequired=true, Name="AppId", ParameterType="Header")
public AppId: string;
public constructor(init?: Partial<BaseRequest>) { (Object as any).assign(this, init); }
}
// @DataContract
export class BaseSecureRequest extends BaseRequest
{
/** @description The Login Token return by the Security API. Required for secured calls. */
// @DataMember
// @ApiMember(DataType="string", Description="The Login Token return by the Security API. Required for secured calls.", Name="Token", ParameterType="Header")
public Token?: string;
public constructor(init?: Partial<BaseSecureRequest>) { super(init); (Object as any).assign(this, init); }
}
// @DataContract
export class BaseResponseResult
{
/** @description */
// @DataMember
// @ApiMember(DataType="string", Description="", Name="StatusCode", ParameterType="body")
public StatusCode?: string;
/** @description */
// @DataMember
// @ApiMember(DataType="string", Description="", Name="Login", ParameterType="body")
public Login?: string;
/** @description */
// @DataMember
// @ApiMember(DataType="string", Description="", Name="ErrorCode", ParameterType="body")
public ErrorCode?: string;
/** @description */
// @DataMember
// @ApiMember(DataType="string", Description="", Name="ErrorDisplayText", ParameterType="body")
public ErrorDisplayText?: string;
/** @description */
// @DataMember
// @ApiMember(DataType="string", Description="", Name="ErrorMessage", ParameterType="body")
public ErrorMessage?: string;
/** @description */
// @DataMember
// @ApiMember(DataType="string", Description="", ExcludeInSchema=true, Name="DomainName", ParameterType="body")
public DomainName?: string;
/** @description */
// @DataMember
// @ApiMember(DataType="string", Description="", ExcludeInSchema=true, Name="IPAddress", ParameterType="body")
public IpAddress?: string;
public constructor(init?: Partial<BaseResponseResult>) { (Object as any).assign(this, init); }
}
// @DataContract
export class BaseResponse
{
/** @description */
// @DataMember
// @ApiMember(DataType="BaseResponseResult", Description="", Name="Status", ParameterType="body")
public Status?: BaseResponseResult;
public constructor(init?: Partial<BaseResponse>) { (Object as any).assign(this, init); }
}
// @DataContract
export class UpdateCustomerResponse extends BaseResponse
{
public constructor(init?: Partial<UpdateCustomerResponse>) { super(init); (Object as any).assign(this, init); }
}
// @DataContract
export class LicenseInfo
{
// @DataMember
public Number?: string;
// @DataMember
public Height?: string;
// @DataMember
public Weight?: string;
// @DataMember
public Hair?: string;
// @DataMember
public Eyes?: string;
// @DataMember
public Expiration?: string;
// @DataMember
public Birthday?: string;
// @DataMember
public Ethnicity?: string;
// @DataMember
public Gender?: string;
// @DataMember
public State?: string;
public constructor(init?: Partial<LicenseInfo>) { (Object as any).assign(this, init); }
}
// @DataContract(Name="FormInput")
export class FormInput
{
/** @description Field name of the Input Field. If linking to an Attribute, this should match the Tag value. */
// @DataMember
// @ApiMember(DataType="string", Description="Field name of the Input Field. If linking to an Attribute, this should match the Tag value.", IsRequired=true, Name="Key", ParameterType="body")
public Key: string;
/** @description Value of the Input Field. */
// @DataMember
// @ApiMember(DataType="string", Description="Value of the Input Field.", IsRequired=true, Name="Value", ParameterType="body")
public Value: string;
/** @description Whether or not the field is encryped with the C2B encryption key. */
// @DataMember
// @ApiMember(DataType="boolean", Description="Whether or not the field is encryped with the C2B encryption key.", Name="Encrypted", ParameterType="body")
public Encrypted: boolean;
public constructor(init?: Partial<FormInput>) { (Object as any).assign(this, init); }
}
/** @description UpdateCustomerRequires active-e Customer Service. */
// @DataContract
export class UpdateCustomerRequest extends BaseSecureRequest
{
/** @description Customer Acct # */
// @DataMember
// @ApiMember(DataType="integer", Description="Customer Acct #", Format="int32", IsRequired=true, Name="Acct", ParameterType="query")
public Acct: number;
/** @description Location ID */
// @DataMember
// @ApiMember(DataType="integer", Description="Location ID", Format="int64", Name="LocationId", ParameterType="query")
public LocationId?: number;
/** @description Customer Default Id */
// @DataMember
// @ApiMember(DataType="integer", Description="Customer Default Id", Format="int64", Name="CustomerDefaultId", ParameterType="query")
public CustomerDefaultId?: number;
/** @description Tax Authority Id */
// @DataMember
// @ApiMember(DataType="integer", Description="Tax Authority Id", Format="int64", Name="TaxAuthorityId", ParameterType="query")
public TaxAuthorityId?: number;
// @DataMember
public Name?: string;
// @DataMember
public Attn?: string;
// @DataMember
public Address1?: string;
// @DataMember
public Address2?: string;
// @DataMember
public City?: string;
// @DataMember
public State?: string;
// @DataMember
public Zip?: string;
// @DataMember
public Country?: string;
// @DataMember
public HomePhone?: string;
// @DataMember
public WorkPhone?: string;
// @DataMember
public CellPhone?: string;
// @DataMember
public Employer?: string;
// @DataMember
public SS?: string;
// @DataMember
public Email?: string;
/** @description Email Method. Set this to Word, PDF, HTML, or None */
// @DataMember
// @ApiMember(DataType="string", Description="Email Method. Set this to Word, PDF, HTML, or None", Name="EmailMethod", ParameterType="query")
public EmailMethod?: string;
// @DataMember
public Notes?: string;
// @DataMember
public DriversLicenseInfo?: LicenseInfo;
/** @description If TRUE, all applicable settings from the customer default will be copied over to the customer. Generally only used when changing the customer default. */
// @DataMember
// @ApiMember(DataType="bool", Description="If TRUE, all applicable settings from the customer default will be copied over to the customer. Generally only used when changing the customer default.", Name="RefreshCustomerDefaults", ParameterType="query")
public RefreshCustomerDefaults: boolean;
/** @description */
// @DataMember
// @ApiMember(DataType="array", Description="", Name="FormInputList", ParameterType="query")
public FormInputList?: FormInput[];
public constructor(init?: Partial<UpdateCustomerRequest>) { super(init); (Object as any).assign(this, init); }
}
TypeScript UpdateCustomerRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .other suffix or ?format=other
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /api/UpdateCustomer HTTP/1.1
Host: active-ewebservice.biz
Accept: text/jsonl
Content-Type: text/jsonl
Content-Length: length
{"Acct":0,"LocationId":0,"CustomerDefaultId":0,"TaxAuthorityId":0,"Name":"String","Attn":"String","Address1":"String","Address2":"String","City":"String","State":"String","Zip":"String","Country":"String","HomePhone":"String","WorkPhone":"String","CellPhone":"String","Employer":"String","SS":"String","Email":"String","EmailMethod":"String","Notes":"String","DriversLicenseInfo":{"Number":"String","Height":"String","Weight":"String","Hair":"String","Eyes":"String","Expiration":"String","Birthday":"String","Ethnicity":"String","Gender":"String","State":"String"},"RefreshCustomerDefaults":false,"FormInputList":[{"Key":"String","Value":"String","Encrypted":false}],"Token":"String","ApiKey":"String","OAuthToken":"String","DeviceId":"String","AppId":"String"}
HTTP/1.1 200 OK
Content-Type: text/jsonl
Content-Length: length
{"Status":{"StatusCode":"String","Login":"String","ErrorCode":"String","ErrorDisplayText":"String","ErrorMessage":"String","DomainName":"String","IpAddress":"String"}}