Required role: | REGISUserRole |
POST | /DynamicsCRM/Account/Create |
---|
export class CRMAccountCreateRequest
{
public regent_id?: number;
public name: string;
public other_name: string;
public business_type: string;
public regent_friendly_church: string;
public educational_affiliation: string;
public reason_added: string;
public connection_to_regent: string;
public denomination: string;
public addr1: string;
public addr2: string;
public city: string;
public state: string;
public country: string;
public code: string;
public email: string;
public solicitation_method: string;
public solicitation_exceptions: string;
public campaign_monitor_optin: boolean;
public campaign_monitor_suppressed: boolean;
public campaign_monitor_lists: string;
public phone_home: string;
public phone_bus: string;
public phone_cell: string;
public no_mail: boolean;
public no_email: boolean;
public no_bulk_email: boolean;
public no_phone: boolean;
public no_marketing_materials: boolean;
public prefers_email: boolean;
public prefers_phone: boolean;
public image_base64: string;
public owning_username: string;
public constructor(init?: Partial<CRMAccountCreateRequest>) { (Object as any).assign(this, init); }
}
TypeScript CRMAccountCreateRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /DynamicsCRM/Account/Create HTTP/1.1
Host: data.regent-college.edu
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
regent_id: 0,
name: String,
other_name: String,
business_type: String,
regent_friendly_church: String,
educational_affiliation: String,
reason_added: String,
connection_to_regent: String,
denomination: String,
addr1: String,
addr2: String,
city: String,
state: String,
country: String,
code: String,
email: String,
solicitation_method: String,
solicitation_exceptions: String,
campaign_monitor_optin: False,
campaign_monitor_suppressed: False,
campaign_monitor_lists: String,
phone_home: String,
phone_bus: String,
phone_cell: String,
no_mail: False,
no_email: False,
no_bulk_email: False,
no_phone: False,
no_marketing_materials: False,
prefers_email: False,
prefers_phone: False,
image_base64: String,
owning_username: String
}
HTTP/1.1 200 OK Content-Type: text/jsv Content-Length: length { errorCode: String, message: String, stackTrace: String, errors: [ { errorCode: String, fieldName: String, message: String, meta: { String: String } } ], meta: { String: String } }