HTTP + SOAP11
The following are sample HTTP requests and responses.
The placeholders shown need to be replaced with actual values.
POST /soap11 HTTP/1.1
Host: taxcommapi.trendsic.net
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: ProjectRequest
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<ProjectRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CRM.AgencyPlatform.API.Internal">
<Project>
<Project>
<ActualEndDate>0001-01-01T00:00:00</ActualEndDate>
<ActualStartDate>0001-01-01T00:00:00</ActualStartDate>
<Budget>0</Budget>
<ClientName>String</ClientName>
<CostToDate>0</CostToDate>
<CreatedAt>0001-01-01T00:00:00</CreatedAt>
<CreatedBy>String</CreatedBy>
<EndDate>0001-01-01T00:00:00</EndDate>
<ProjectDescription>String</ProjectDescription>
<ProjectID>0</ProjectID>
<ProjectLocation>String</ProjectLocation>
<ProjectManagerFirstName>String</ProjectManagerFirstName>
<ProjectManagerID>0</ProjectManagerID>
<ProjectManagerLastName>String</ProjectManagerLastName>
<ProjectManagerMiddleInitial>String</ProjectManagerMiddleInitial>
<ProjectName>String</ProjectName>
<ProjectSponsor>String</ProjectSponsor>
<ProjectStatus>String</ProjectStatus>
<ProjectStatusDesc>String</ProjectStatusDesc>
<ProjectStatusID>0</ProjectStatusID>
<ProjectType>String</ProjectType>
<Scope>String</Scope>
<StartDate>0001-01-01T00:00:00</StartDate>
<UpdatedAt>0001-01-01T00:00:00</UpdatedAt>
</Project>
</Project>
<ProjectID>0</ProjectID>
</ProjectRequest>
</soap:Body>
</soap:Envelope>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<ProjectResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CRM.AgencyPlatform.API.Internal">
<Project>
<Project>
<ActualEndDate>0001-01-01T00:00:00</ActualEndDate>
<ActualStartDate>0001-01-01T00:00:00</ActualStartDate>
<Budget>0</Budget>
<ClientName>String</ClientName>
<CostToDate>0</CostToDate>
<CreatedAt>0001-01-01T00:00:00</CreatedAt>
<CreatedBy>String</CreatedBy>
<EndDate>0001-01-01T00:00:00</EndDate>
<ProjectDescription>String</ProjectDescription>
<ProjectID>0</ProjectID>
<ProjectLocation>String</ProjectLocation>
<ProjectManagerFirstName>String</ProjectManagerFirstName>
<ProjectManagerID>0</ProjectManagerID>
<ProjectManagerLastName>String</ProjectManagerLastName>
<ProjectManagerMiddleInitial>String</ProjectManagerMiddleInitial>
<ProjectName>String</ProjectName>
<ProjectSponsor>String</ProjectSponsor>
<ProjectStatus>String</ProjectStatus>
<ProjectStatusDesc>String</ProjectStatusDesc>
<ProjectStatusID>0</ProjectStatusID>
<ProjectType>String</ProjectType>
<Scope>String</Scope>
<StartDate>0001-01-01T00:00:00</StartDate>
<UpdatedAt>0001-01-01T00:00:00</UpdatedAt>
</Project>
</Project>
<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:ResponseError>
</d2p1:Errors>
</ResponseStatus>
</ProjectResponse>
</soap:Body>
</soap:Envelope>