regis

<back to all web services

CRMPaymentsRequest

Requires Authentication
Required role:REGISUserRole
The following routes are available for this service:
POST/DynamicsCRM/Payments

export class CRMPaymentResponse
{
    public regent_id: number;
    public contact_addressee: string;
    public donor_first_name: string;
    public donor_last_name: string;
    public donor_addressee: string;
    public donor_city: string;
    public donor_country: string;
    public donor_owner_full_name: string;
    public is_contact: boolean;
    public is_account: boolean;
    public soft_credit_regent_id?: number;
    public soft_credit_contact_addressee: string;
    public soft_credit_contact_first_name: string;
    public soft_credit_contact_last_name: string;
    public soft_credit_contact_spouse_is_main_contact: boolean;
    public soft_credit_contact_city: string;
    public soft_credit_contact_country: string;
    public soft_credit_contact_owner_full_name: string;
    public soft_credit_second_regent_id?: number;
    public soft_credit_second_contact_addressee: string;
    public soft_credit_second_contact_first_name: string;
    public soft_credit_second_contact_last_name: string;
    public soft_credit_second_contact_spouse_is_main_contact: boolean;
    public soft_credit_second_contact_city: string;
    public soft_credit_second_contact_country: string;
    public soft_credit_second_contact_owner_full_name: string;
    public spouse_is_main_contact: boolean;
    public import_id?: number;
    public donation_id: string;
    public payment_id: string;
    public guid: string;
    public name: string;
    public description: string;
    public appeal_code: string;
    public designation: string;
    public designation_description: string;
    public general_ledger_account_number: string;
    public campaign: string;
    public total_pledge_amount: number;
    public total_paid_amount: number;
    public amount: number;
    public canadian_amount: number;
    public payment_exchange_rate: number;
    public receipt_amount: number;
    public gift_exchange_rate?: number;
    public total_paid_canadian_amount?: number;
    public is_recurring: boolean;
    public is_complete: boolean;
    public is_parent_donation: boolean;
    public currency: string;
    public source: string;
    public channel: string;
    public receipting_organization: string;
    public type: string;
    public push_to_gp: boolean;
    public finance_entry_date?: string;
    public finance_id: string;
    public acknowledgment_sent: boolean;
    public send_acknowledgment: boolean;
    public acknowledgment_template_guid: string;
    public parent_guid: string;
    public anonymous: boolean;
    public gift_date?: string;
    public recurring_gift_start_date?: string;
    public recurring_gift_end_date?: string;
    public payment_date?: string;
    public tax_receipt: string;
    public tax_receipt_date_sent?: string;
    public cheque_number: string;
    public version_number: number;
    public added_date?: string;

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

export class CRMPaymentsResponse
{
    public responseStatus: ResponseStatus;
    public payments: CRMPaymentResponse[];
    public from_date?: string;
    public to_date?: string;
    public start_version_number?: number;
    public end_version_number?: number;

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

export class CRMPaymentsRequest
{
    public from_date?: string;
    public to_date?: string;
    public regent_id?: number;
    public start_version_number?: number;
    public end_version_number?: number;
    public recurring_only: boolean;
    public completed_only: boolean;

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

TypeScript CRMPaymentsRequest 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 /DynamicsCRM/Payments HTTP/1.1 
Host: data.regent-college.edu 
Accept: application/xml
Content-Type: application/xml
Content-Length: length

<CRMPaymentsRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/regis.DynamicsCRM.Requests">
  <completed_only>false</completed_only>
  <end_version_number>0</end_version_number>
  <from_date>0001-01-01T00:00:00</from_date>
  <recurring_only>false</recurring_only>
  <regent_id>0</regent_id>
  <start_version_number>0</start_version_number>
  <to_date>0001-01-01T00:00:00</to_date>
</CRMPaymentsRequest>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length

<CRMPaymentsResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/regis.DynamicsCRM.Responses">
  <ResponseStatus xmlns:d2p1="http://schemas.servicestack.net/types">
    <d2p1:ErrorCode>String</d2p1:ErrorCode>
    <d2p1:Message>String</d2p1:Message>
    <d2p1:StackTrace>String</d2p1:StackTrace>
    <d2p1:Errors>
      <d2p1:ResponseError>
        <d2p1:ErrorCode>String</d2p1:ErrorCode>
        <d2p1:FieldName>String</d2p1:FieldName>
        <d2p1:Message>String</d2p1:Message>
        <d2p1:Meta xmlns:d5p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
          <d5p1:KeyValueOfstringstring>
            <d5p1:Key>String</d5p1:Key>
            <d5p1:Value>String</d5p1:Value>
          </d5p1:KeyValueOfstringstring>
        </d2p1:Meta>
      </d2p1:ResponseError>
    </d2p1:Errors>
    <d2p1:Meta xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
      <d3p1:KeyValueOfstringstring>
        <d3p1:Key>String</d3p1:Key>
        <d3p1:Value>String</d3p1:Value>
      </d3p1:KeyValueOfstringstring>
    </d2p1:Meta>
  </ResponseStatus>
  <end_version_number>0</end_version_number>
  <from_date>0001-01-01T00:00:00</from_date>
  <payments>
    <CRMPaymentResponse>
      <acknowledgment_sent>false</acknowledgment_sent>
      <acknowledgment_template_guid>String</acknowledgment_template_guid>
      <added_date>0001-01-01T00:00:00</added_date>
      <amount>0</amount>
      <anonymous>false</anonymous>
      <appeal_code>String</appeal_code>
      <campaign>String</campaign>
      <canadian_amount>0</canadian_amount>
      <channel>String</channel>
      <cheque_number>String</cheque_number>
      <contact_addressee>String</contact_addressee>
      <currency>String</currency>
      <description>String</description>
      <designation>String</designation>
      <designation_description>String</designation_description>
      <donation_id>String</donation_id>
      <donor_addressee>String</donor_addressee>
      <donor_city>String</donor_city>
      <donor_country>String</donor_country>
      <donor_first_name>String</donor_first_name>
      <donor_last_name>String</donor_last_name>
      <donor_owner_full_name>String</donor_owner_full_name>
      <finance_entry_date>0001-01-01T00:00:00</finance_entry_date>
      <finance_id>String</finance_id>
      <general_ledger_account_number>String</general_ledger_account_number>
      <gift_date>0001-01-01T00:00:00</gift_date>
      <gift_exchange_rate>0</gift_exchange_rate>
      <guid>String</guid>
      <import_id>0</import_id>
      <is_account>false</is_account>
      <is_complete>false</is_complete>
      <is_contact>false</is_contact>
      <is_parent_donation>false</is_parent_donation>
      <is_recurring>false</is_recurring>
      <name>String</name>
      <parent_guid>String</parent_guid>
      <payment_date>0001-01-01T00:00:00</payment_date>
      <payment_exchange_rate>0</payment_exchange_rate>
      <payment_id>String</payment_id>
      <push_to_gp>false</push_to_gp>
      <receipt_amount>0</receipt_amount>
      <receipting_organization>String</receipting_organization>
      <recurring_gift_end_date>0001-01-01T00:00:00</recurring_gift_end_date>
      <recurring_gift_start_date>0001-01-01T00:00:00</recurring_gift_start_date>
      <regent_id>0</regent_id>
      <send_acknowledgment>false</send_acknowledgment>
      <soft_credit_contact_addressee>String</soft_credit_contact_addressee>
      <soft_credit_contact_city>String</soft_credit_contact_city>
      <soft_credit_contact_country>String</soft_credit_contact_country>
      <soft_credit_contact_first_name>String</soft_credit_contact_first_name>
      <soft_credit_contact_last_name>String</soft_credit_contact_last_name>
      <soft_credit_contact_owner_full_name>String</soft_credit_contact_owner_full_name>
      <soft_credit_contact_spouse_is_main_contact>false</soft_credit_contact_spouse_is_main_contact>
      <soft_credit_regent_id>0</soft_credit_regent_id>
      <soft_credit_second_contact_addressee>String</soft_credit_second_contact_addressee>
      <soft_credit_second_contact_city>String</soft_credit_second_contact_city>
      <soft_credit_second_contact_country>String</soft_credit_second_contact_country>
      <soft_credit_second_contact_first_name>String</soft_credit_second_contact_first_name>
      <soft_credit_second_contact_last_name>String</soft_credit_second_contact_last_name>
      <soft_credit_second_contact_owner_full_name>String</soft_credit_second_contact_owner_full_name>
      <soft_credit_second_contact_spouse_is_main_contact>false</soft_credit_second_contact_spouse_is_main_contact>
      <soft_credit_second_regent_id>0</soft_credit_second_regent_id>
      <source>String</source>
      <spouse_is_main_contact>false</spouse_is_main_contact>
      <tax_receipt>String</tax_receipt>
      <tax_receipt_date_sent>0001-01-01T00:00:00</tax_receipt_date_sent>
      <total_paid_amount>0</total_paid_amount>
      <total_paid_canadian_amount>0</total_paid_canadian_amount>
      <total_pledge_amount>0</total_pledge_amount>
      <type>String</type>
      <version_number>0</version_number>
    </CRMPaymentResponse>
  </payments>
  <start_version_number>0</start_version_number>
  <to_date>0001-01-01T00:00:00</to_date>
</CRMPaymentsResponse>