| GET,OPTIONS | /v1/CrewContacts/{CrewID} |
|---|
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| CrewID | path | int | No | |
| CrewContact | query | List<CrewContact> | No |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| CrewContactID | form | int | No | |
| CrewID | form | int | No | |
| CrewName | form | string | No | |
| ContactID | form | int | No | |
| ContactName | form | string | No | |
| Active | form | bool | No | |
| Deleted | form | bool | No | |
| DeletedDate | form | DateTime | No | |
| RecordCreatedDate | form | DateTime | No | |
| CreatedByUID | form | Guid | No | |
| ContactImage | form | string | No | |
| FirstName | form | string | No | |
| LastName | form | string | No | |
| Initials | form | string | No |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| ResponseStatus | form | ResponseStatus | No | |
| CrewContact | form | List<CrewContact> | No |
To override the Content-type in your clients, use the HTTP Accept Header, append the .json suffix or ?format=json
To embed the response in a jsonp callback, append ?callback=myCallback
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /v1/CrewContacts/{CrewID} HTTP/1.1
Host: api.dev.dynamics.trendsic.com
Accept: application/json
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length
{"ResponseStatus":{"ErrorCode":"String","Message":"String","StackTrace":"String","Errors":[{"ErrorCode":"String","FieldName":"String","Message":"String","Meta":{"String":"String"}}],"Meta":{"String":"String"}},"CrewContact":[{"CrewContactID":0,"CrewID":0,"CrewName":"String","ContactID":0,"ContactName":"String","Active":false,"Deleted":false,"DeletedDate":"0001-01-01T00:00:00.0000000","RecordCreatedDate":"0001-01-01T00:00:00.0000000","CreatedByUID":"00000000000000000000000000000000","ContactImage":"String","FirstName":"String","LastName":"String","Initials":"String"}]}