POST | /members/claim |
---|
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
EmployerId | body | string | No | |
MemberId | body | string | No | |
Type | body | string | No | |
Description | body | string | No |
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
Result | form | HttpResult | No |
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
ResponseText | form | string | No | |
ResponseStream | form | Stream | No | |
FileInfo | form | FileInfo | No | |
VirtualFile | form | IVirtualFile | No | |
ContentType | form | string | No | |
Headers | form | Dictionary<string, string> | No | |
Cookies | form | List<Cookie> | No | |
ETag | form | string | No | |
Age | form | TimeSpan? | No | |
MaxAge | form | TimeSpan? | No | |
Expires | form | DateTime? | No | |
LastModified | form | DateTime? | No | |
CacheControl | form | CacheControl | No | |
ResultScope | form | Func<IDisposable> | No | |
AllowsPartialResponse | form | bool | No | |
Options | form | IDictionary<string, string> | No | |
Status | form | int | No | |
StatusCode | form | HttpStatusCode | No | |
StatusDescription | form | string | No | |
Response | form | Object | No | |
ResponseFilter | form | IContentTypeWriter | No | |
RequestContext | form | IRequest | No | |
View | form | string | No | |
Template | form | string | No | |
PaddingLength | form | int | No | |
IsPartialRequest | form | bool | No |
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
VirtualPathProvider | form | IVirtualPathProvider | No | |
Extension | form | string | No | |
Length | form | long | No |
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
RootDirectory | form | IVirtualDirectory | No | |
VirtualPathSeparator | form | string | No | |
RealPathSeparator | form | string | No |
Name | Value | |
---|---|---|
None | 0 | |
Public | 1 | |
Private | 2 | |
MustRevalidate | 4 | |
NoCache | 8 | |
NoStore | 16 | |
NoTransform | 32 | |
ProxyRevalidate | 64 |
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
OriginalRequest | form | Object | No | |
Response | form | IResponse | No | |
OperationName | form | string | No | |
Verb | form | string | No | |
RequestAttributes | form | RequestAttributes | No | |
RequestPreferences | form | IRequestPreferences | No | |
Dto | form | Object | No | |
ContentType | form | string | No | |
IsLocal | form | bool | No | |
UserAgent | form | string | No | |
Cookies | form | IDictionary<string, Cookie> | No | |
ResponseContentType | form | string | No | |
HasExplicitResponseContentType | form | bool | No | |
Items | form | Dictionary<string, Object> | No | |
Headers | form | NameValueCollection | No | |
QueryString | form | NameValueCollection | No | |
FormData | form | NameValueCollection | No | |
UseBufferedStream | form | bool | No | |
RawUrl | form | string | No | |
AbsoluteUri | form | string | No | |
UserHostAddress | form | string | No | |
RemoteIp | form | string | No | |
Authorization | form | string | No | |
IsSecureConnection | form | bool | No | |
AcceptTypes | form | string[] | No | |
PathInfo | form | string | No | |
OriginalPathInfo | form | string | No | |
InputStream | form | Stream | No | |
ContentLength | form | long | No | |
Files | form | IHttpFile[] | No | |
UrlReferrer | form | Uri | No |
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
OriginalResponse | form | Object | No | |
Request | form | IRequest | No | |
StatusCode | form | int | No | |
StatusDescription | form | string | No | |
ContentType | form | string | No | |
OutputStream | form | Stream | No | |
Dto | form | Object | No | |
UseBufferedStream | form | bool | No | |
IsClosed | form | bool | No | |
KeepAlive | form | bool | No | |
HasStarted | form | bool | No | |
Items | form | Dictionary<string, Object> | No |
Name | Value | |
---|---|---|
None | 0 | |
Localhost | 1 | |
LocalSubnet | 2 | |
External | 4 | |
Secure | 8 | |
InSecure | 16 | |
AnySecurityMode | 24 | |
HttpHead | 32 | |
HttpGet | 64 | |
HttpPost | 128 | |
HttpPut | 256 | |
HttpDelete | 512 | |
HttpPatch | 1024 | |
HttpOptions | 2048 | |
HttpOther | 4096 | |
AnyHttpMethod | 8160 | |
OneWay | 8192 | |
Reply | 16384 | |
AnyCallStyle | 24576 | |
Soap11 | 32768 | |
Soap12 | 65536 | |
Xml | 131072 | |
Json | 262144 | |
Jsv | 524288 | |
ProtoBuf | 1048576 | |
Csv | 2097152 | |
Html | 4194304 | |
Wire | 8388608 | |
MsgPack | 16777216 | |
FormatOther | 33554432 | |
AnyFormat | 67076096 | |
Http | 67108864 | |
MessageQueue | 134217728 | |
Tcp | 268435456 | |
Grpc | 536870912 | |
EndpointOther | 1073741824 | |
AnyEndpoint | 2080374784 | |
InProcess | -2147483648 | |
InternalNetworkAccess | -2147483645 | |
AnyNetworkAccessType | -2147483641 | |
Any | -1 |
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
AcceptsBrotli | form | bool | No | |
AcceptsDeflate | form | bool | No | |
AcceptsGzip | form | bool | No |
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
Name | form | string | No | |
FileName | form | string | No | |
ContentLength | form | long | No | |
ContentType | form | string | No | |
InputStream | form | Stream | No |
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /members/claim HTTP/1.1
Host: hcbtas-q-albamfs-api.azurewebsites.net
Accept: application/xml
Content-Type: application/xml
Content-Length: length
<ClaimReq xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AlbaApi.ServiceModel">
<Description>String</Description>
<EmployerId>String</EmployerId>
<MemberId>String</MemberId>
<Type>String</Type>
</ClaimReq>
HTTP/1.1 200 OK Content-Type: application/xml Content-Length: length <ClaimResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AlbaApi.ServiceModel"> <Result xmlns:d2p1="http://schemas.servicestack.net/types"> <d2p1:Age>PT0S</d2p1:Age> <d2p1:AllowsPartialResponse>false</d2p1:AllowsPartialResponse> <d2p1:CacheControl>None</d2p1:CacheControl> <d2p1:ContentType>String</d2p1:ContentType> <d2p1:Cookies xmlns:d3p1="http://schemas.datacontract.org/2004/07/System.Net" /> <d2p1:ETag>String</d2p1:ETag> <d2p1:Expires>0001-01-01T00:00:00</d2p1:Expires> <d2p1:Headers xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d3p1:KeyValueOfstringstring> <d3p1:Key>Location</d3p1:Key> <d3p1:Value>String</d3p1:Value> </d3p1:KeyValueOfstringstring> </d2p1:Headers> <d2p1:LastModified>0001-01-01T00:00:00</d2p1:LastModified> <d2p1:MaxAge>PT0S</d2p1:MaxAge> <d2p1:Options xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d3p1:KeyValueOfstringstring> <d3p1:Key>Location</d3p1:Key> <d3p1:Value>String</d3p1:Value> </d3p1:KeyValueOfstringstring> </d2p1:Options> <d2p1:PaddingLength>0</d2p1:PaddingLength> <d2p1:RequestContext i:nil="true" /> <d2p1:Response /> <d2p1:ResponseFilter i:nil="true" /> <d2p1:ResultScope xmlns:d3p1="http://schemas.datacontract.org/2004/07/System" i:nil="true" /> <d2p1:Status>100</d2p1:Status> <d2p1:StatusCode>Continue</d2p1:StatusCode> <d2p1:StatusDescription>String</d2p1:StatusDescription> <d2p1:Template>String</d2p1:Template> <d2p1:View>String</d2p1:View> </Result> </ClaimResponse>