Trendsic Platform Service

<back to all web services

FactFinderDebtRequest

Requires Authentication
Requires any of the roles:Agent, Administrator, Agent, Administrator
The following routes are available for this service:
POST,PUT,OPTIONS/v1/FactFinderDebt
GET/v1/FactFinderDebt/{ContactId}/Validate

export class Contact
{
    public ContactId: number;
    public ContactType: number;
    public FirstName: string;
    public LastName: string;
    public Name: string;
    public Role: string;
    public Title: string;
    public EmailWork: string;
    public EmailPersonal: string;
    public District: string;
    public DistrictID: number;
    public School: string;
    public SchoolID: number;
    public State: string;
    public StateName: string;
    public StateID: number;
    public CountyID: number;
    public County: string;
    public Phone: string;
    public Department: string;
    public Flow: string;
    public LastContact: string;
    public DoNotContact: boolean;
    public Active: boolean;
    public AgentId: number;
    public PhoneAlt: string;
    public PeraContactId: number;
    public RoomNumber: string;
    public SourceTypeId: number;
    public SourceTypeDesc: string;
    public SourceNote: string;
    public ContactStatusId: number;
    public ContactStatusDesc: string;
    public SSN: string;
    public DateOfBirth: string;
    public Deleted: boolean;
    public IsShared: boolean;
    public address_line1: string;
    public address_city: string;
    public address_state: string;
    public address_zip: string;
    public DeletedBy: string;
    public DeletedDateTimeUtc?: string;
    public HasNBC: boolean;
    public HasFactFinderSheet: boolean;
    public MiddleInitial: string;
    public Tags: string;
    public DateCreated: string;
    public PhoneLabel: string;
    public AltPhoneLabel: string;
    public Carriers: string;
    public ContactImage: string;
    public CompanyAffiliation: string;
    public AdditionalInformation: string;
    public HasGiftCard: boolean;
    public ContactCategory: number;
    public WritingAgentId: number;
    public WritingAgentName: string;
    public MaritalStatus: string;
    public TotalDebtAmount: number;
    public NumberOfDebtAccounts: number;
    public FactFinderCodeId: number;
    public BusinessName: string;
    public DBA: string;
    public ContactGUID: string;
    public ProjectEndDate: string;
    public Rate: number;
    public JobID: number;
    public JobName: string;
    public JobCount: number;
    public Locked: boolean;
    public LockedByAgentId: number;
    public LockedTimestamp: string;
    public Initials: string;
    public ContactCategoryName: string;
    public SMSOptIn: boolean;

    public constructor(init?: Partial<Contact>) { (Object as any).assign(this, init); }
}

export class FactFinderDebt
{
    public FactFinderDebtId: number;
    public ContactId: number;
    public OwnHome?: boolean;
    public HomeValue?: number;
    public OtherProperty?: boolean;
    public OtherPropertyValue?: number;
    public FirstCar?: boolean;
    public FirstCarValue?: number;
    public SecondCar?: boolean;
    public SecondCarValue?: number;
    public BoatRv?: boolean;
    public BoatRvValue?: number;
    public Stocks401kOther?: boolean;
    public Stocks401kOtherValue?: number;
    public HomeRentInsurance?: boolean;
    public HomeRentInsuranceValue?: number;
    public ChildAlimonySupport?: boolean;
    public ChildAlimonySupportValue?: number;
    public ChildcareRelated?: boolean;
    public ChildcareRelatedValue?: number;
    public LifeInsurance?: boolean;
    public LifePolicyAmount?: number;
    public LifeInsuranceMonthly?: number;
    public MortgageRentExpense?: number;
    public PropertyTaxExpense?: number;
    public CarPaymentFirstExpense?: number;
    public CarPaymentSecondExpense?: number;
    public RVPaymentExpense?: number;
    public SavingsPaymentExpense?: number;
    public HomeInsuranceExpense?: number;
    public GroceriesExpense?: number;
    public EntertainmentExpense?: number;
    public LifeInsuranceCostExpense?: number;
    public GasElectricityExpense?: number;
    public WaterTrashSewerExpense?: number;
    public TelephoneCellExpense?: number;
    public CableInternetExpense?: number;
    public AutoExpenseGasExpense?: number;
    public AutoInsuranceExpense?: number;
    public MedicalExpense?: number;
    public MiscellaneousExpense?: number;
    public FamilyFriendLoansExpense?: number;
    public WhatBank: string;
    public BankDebt?: boolean;
    public CreditUnion?: boolean;

    public constructor(init?: Partial<FactFinderDebt>) { (Object as any).assign(this, init); }
}

export class ContactSpouse
{
    public ContactSpouseId: number;
    public ContactId: number;
    public Name: string;
    public DOB?: string;
    public Cell: string;
    public Employer: string;
    public Years?: number;
    public Position: string;
    public Email: string;
    public PastOccupations: string;

    public constructor(init?: Partial<ContactSpouse>) { (Object as any).assign(this, init); }
}

export class ContactCreditor
{
    public ContactCreditorId: number;
    public ContactId: number;
    public CreditorName: string;
    public NameOnAccount: string;
    public AccountNumber: string;
    public CurrentBalance?: number;
    public MinimumPayment?: number;
    public HasCoSigner: boolean;

    public constructor(init?: Partial<ContactCreditor>) { (Object as any).assign(this, init); }
}

export class FactFinderDebtExtended
{
    public Contact: Contact;
    public FactFinderDebt: FactFinderDebt;
    public Spouse: ContactSpouse;
    public Creditors: ContactCreditor[] = [];
    public AdditionalNotes: string;

    public constructor(init?: Partial<FactFinderDebtExtended>) { (Object as any).assign(this, init); }
}

export class FactFinderDebtRequest
{
    public FactFinderDebt: FactFinderDebtExtended;
    public DataEntry: boolean;
    public ContactId: number;

    public constructor(init?: Partial<FactFinderDebtRequest>) { (Object as any).assign(this, init); }
}

TypeScript FactFinderDebtRequest DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml

HTTP + XML

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /v1/FactFinderDebt HTTP/1.1 
Host: api.dev.dynamics.trendsic.com 
Accept: application/xml
Content-Type: application/xml
Content-Length: length

<FactFinderDebtRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CRM.AgencyPlatform.API.Internal">
  <ContactId>0</ContactId>
  <DataEntry>false</DataEntry>
  <FactFinderDebt>
    <AdditionalNotes>String</AdditionalNotes>
    <Contact>
      <Active>false</Active>
      <AdditionalInformation>String</AdditionalInformation>
      <AgentId>0</AgentId>
      <AltPhoneLabel>String</AltPhoneLabel>
      <BusinessName>String</BusinessName>
      <Carriers>String</Carriers>
      <CompanyAffiliation>String</CompanyAffiliation>
      <ContactCategory>0</ContactCategory>
      <ContactCategoryName>String</ContactCategoryName>
      <ContactGUID>00000000-0000-0000-0000-000000000000</ContactGUID>
      <ContactId>0</ContactId>
      <ContactImage>String</ContactImage>
      <ContactStatusDesc>String</ContactStatusDesc>
      <ContactStatusId>0</ContactStatusId>
      <ContactType>0</ContactType>
      <County>String</County>
      <CountyID>0</CountyID>
      <DBA>String</DBA>
      <DateCreated>0001-01-01T00:00:00</DateCreated>
      <DateOfBirth>0001-01-01T00:00:00</DateOfBirth>
      <Deleted>false</Deleted>
      <DeletedBy>String</DeletedBy>
      <DeletedDateTimeUtc>0001-01-01T00:00:00</DeletedDateTimeUtc>
      <Department>String</Department>
      <District>String</District>
      <DistrictID>0</DistrictID>
      <DoNotContact>false</DoNotContact>
      <EmailPersonal>String</EmailPersonal>
      <EmailWork>String</EmailWork>
      <FactFinderCodeId>0</FactFinderCodeId>
      <FirstName>String</FirstName>
      <Flow>String</Flow>
      <HasFactFinderSheet>false</HasFactFinderSheet>
      <HasGiftCard>false</HasGiftCard>
      <HasNBC>false</HasNBC>
      <Initials>String</Initials>
      <IsShared>false</IsShared>
      <JobCount>0</JobCount>
      <JobID>0</JobID>
      <JobName>String</JobName>
      <LastContact>0001-01-01T00:00:00</LastContact>
      <LastName>String</LastName>
      <Locked>false</Locked>
      <LockedByAgentId>0</LockedByAgentId>
      <LockedTimestamp>0001-01-01T00:00:00</LockedTimestamp>
      <MaritalStatus>String</MaritalStatus>
      <MiddleInitial>String</MiddleInitial>
      <Name>String</Name>
      <NumberOfDebtAccounts>0</NumberOfDebtAccounts>
      <PeraContactId>0</PeraContactId>
      <Phone>String</Phone>
      <PhoneAlt>String</PhoneAlt>
      <PhoneLabel>String</PhoneLabel>
      <ProjectEndDate>0001-01-01T00:00:00</ProjectEndDate>
      <Rate>0</Rate>
      <Role>String</Role>
      <RoomNumber>String</RoomNumber>
      <SMSOptIn>false</SMSOptIn>
      <SSN>String</SSN>
      <School>String</School>
      <SchoolID>0</SchoolID>
      <SourceNote>String</SourceNote>
      <SourceTypeDesc>String</SourceTypeDesc>
      <SourceTypeId>0</SourceTypeId>
      <State>String</State>
      <StateID>0</StateID>
      <StateName>String</StateName>
      <Tags>String</Tags>
      <Title>String</Title>
      <TotalDebtAmount>0</TotalDebtAmount>
      <WritingAgentId>0</WritingAgentId>
      <WritingAgentName>String</WritingAgentName>
      <address_city>String</address_city>
      <address_line1>String</address_line1>
      <address_state>String</address_state>
      <address_zip>String</address_zip>
    </Contact>
    <Creditors>
      <ContactCreditor>
        <AccountNumber>String</AccountNumber>
        <ContactCreditorId>0</ContactCreditorId>
        <ContactId>0</ContactId>
        <CreditorName>String</CreditorName>
        <CurrentBalance>0</CurrentBalance>
        <HasCoSigner>false</HasCoSigner>
        <MinimumPayment>0</MinimumPayment>
        <NameOnAccount>String</NameOnAccount>
      </ContactCreditor>
    </Creditors>
    <FactFinderDebt>
      <AutoExpenseGasExpense>0</AutoExpenseGasExpense>
      <AutoInsuranceExpense>0</AutoInsuranceExpense>
      <BankDebt>false</BankDebt>
      <BoatRv>false</BoatRv>
      <BoatRvValue>0</BoatRvValue>
      <CableInternetExpense>0</CableInternetExpense>
      <CarPaymentFirstExpense>0</CarPaymentFirstExpense>
      <CarPaymentSecondExpense>0</CarPaymentSecondExpense>
      <ChildAlimonySupport>false</ChildAlimonySupport>
      <ChildAlimonySupportValue>0</ChildAlimonySupportValue>
      <ChildcareRelated>false</ChildcareRelated>
      <ChildcareRelatedValue>0</ChildcareRelatedValue>
      <ContactId>0</ContactId>
      <CreditUnion>false</CreditUnion>
      <EntertainmentExpense>0</EntertainmentExpense>
      <FactFinderDebtId>0</FactFinderDebtId>
      <FamilyFriendLoansExpense>0</FamilyFriendLoansExpense>
      <FirstCar>false</FirstCar>
      <FirstCarValue>0</FirstCarValue>
      <GasElectricityExpense>0</GasElectricityExpense>
      <GroceriesExpense>0</GroceriesExpense>
      <HomeInsuranceExpense>0</HomeInsuranceExpense>
      <HomeRentInsurance>false</HomeRentInsurance>
      <HomeRentInsuranceValue>0</HomeRentInsuranceValue>
      <HomeValue>0</HomeValue>
      <LifeInsurance>false</LifeInsurance>
      <LifeInsuranceCostExpense>0</LifeInsuranceCostExpense>
      <LifeInsuranceMonthly>0</LifeInsuranceMonthly>
      <LifePolicyAmount>0</LifePolicyAmount>
      <MedicalExpense>0</MedicalExpense>
      <MiscellaneousExpense>0</MiscellaneousExpense>
      <MortgageRentExpense>0</MortgageRentExpense>
      <OtherProperty>false</OtherProperty>
      <OtherPropertyValue>0</OtherPropertyValue>
      <OwnHome>false</OwnHome>
      <PropertyTaxExpense>0</PropertyTaxExpense>
      <RVPaymentExpense>0</RVPaymentExpense>
      <SavingsPaymentExpense>0</SavingsPaymentExpense>
      <SecondCar>false</SecondCar>
      <SecondCarValue>0</SecondCarValue>
      <Stocks401kOther>false</Stocks401kOther>
      <Stocks401kOtherValue>0</Stocks401kOtherValue>
      <TelephoneCellExpense>0</TelephoneCellExpense>
      <WaterTrashSewerExpense>0</WaterTrashSewerExpense>
      <WhatBank>String</WhatBank>
    </FactFinderDebt>
    <Spouse>
      <Cell>String</Cell>
      <ContactId>0</ContactId>
      <ContactSpouseId>0</ContactSpouseId>
      <DOB>0001-01-01T00:00:00</DOB>
      <Email>String</Email>
      <Employer>String</Employer>
      <Name>String</Name>
      <PastOccupations>String</PastOccupations>
      <Position>String</Position>
      <Years>0</Years>
    </Spouse>
  </FactFinderDebt>
</FactFinderDebtRequest>