Required permission: | UpdateApplication |
POST | /DynamicsCRM/Sharepoint/Location |
---|
import java.math.*;
import java.util.*;
import net.servicestack.client.*;
public class dtos
{
public static class CRMSharepointLocationRequest
{
public String application_guid = null;
public String lead_guid = null;
public Integer regent_id = null;
public String getApplicationGuid() { return application_guid; }
public CRMSharepointLocationRequest setApplicationGuid(String value) { this.application_guid = value; return this; }
public String getLeadGuid() { return lead_guid; }
public CRMSharepointLocationRequest setLeadGuid(String value) { this.lead_guid = value; return this; }
public Integer getRegentId() { return regent_id; }
public CRMSharepointLocationRequest setRegentId(Integer value) { this.regent_id = value; return this; }
}
public static class CRMSharepointLocationResponse
{
public ResponseStatus responseStatus = null;
public String guid = null;
public String relativeurl = null;
public String regarding_guid = null;
public ResponseStatus getResponseStatus() { return responseStatus; }
public CRMSharepointLocationResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; }
public String getGuid() { return guid; }
public CRMSharepointLocationResponse setGuid(String value) { this.guid = value; return this; }
public String getRelativeurl() { return relativeurl; }
public CRMSharepointLocationResponse setRelativeurl(String value) { this.relativeurl = value; return this; }
public String getRegardingGuid() { return regarding_guid; }
public CRMSharepointLocationResponse setRegardingGuid(String value) { this.regarding_guid = value; return this; }
}
}
Java CRMSharepointLocationRequest 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/Sharepoint/Location HTTP/1.1
Host: data.regent-college.edu
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
application_guid: String,
lead_guid: String,
regent_id: 0
}
HTTP/1.1 200 OK Content-Type: text/jsv Content-Length: length { responseStatus: { errorCode: String, message: String, stackTrace: String, errors: [ { errorCode: String, fieldName: String, message: String, meta: { String: String } } ], meta: { String: String } }, guid: String, relativeurl: String, regarding_guid: String }