Required permission: | UpdateApplication |
POST | /DynamicsCRM/Sharepoint/Link |
---|
import 'package:servicestack/servicestack.dart';
import 'dart:typed_data';
class CRMSharepointLinkRequest implements IConvertible
{
String? guid;
String? name;
bool? is_contact;
bool? is_lead;
bool? is_application;
CRMSharepointLinkRequest({this.guid,this.name,this.is_contact,this.is_lead,this.is_application});
CRMSharepointLinkRequest.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
guid = json['guid'];
name = json['name'];
is_contact = json['is_contact'];
is_lead = json['is_lead'];
is_application = json['is_application'];
return this;
}
Map<String, dynamic> toJson() => {
'guid': guid,
'name': name,
'is_contact': is_contact,
'is_lead': is_lead,
'is_application': is_application
};
getTypeName() => "CRMSharepointLinkRequest";
TypeContext? context = _ctx;
}
TypeContext _ctx = TypeContext(library: 'data.regent_college.edu', types: <String, TypeInfo> {
'CRMSharepointLinkRequest': TypeInfo(TypeOf.Class, create:() => CRMSharepointLinkRequest()),
});
Dart CRMSharepointLinkRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .csv suffix or ?format=csv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /DynamicsCRM/Sharepoint/Link HTTP/1.1
Host: data.regent-college.edu
Accept: text/csv
Content-Type: text/csv
Content-Length: length
{"guid":"String","name":"String","is_contact":false,"is_lead":false,"is_application":false}
HTTP/1.1 200 OK Content-Type: text/csv Content-Length: length {"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}}