We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
QueryString
Should support both api and strongly typed.
Request .Get("http://www.persons.com/api/People") .WithQueryStringValue("", "") .WithQueryStringValues(new {Id = "", FirstName = ""}) .Verify(r => r);
http://qa-svc-ei.medassets.com/api/Benefits?payerId=24ecae81-193d-41e2-b22b-e4a36932ac09&subscriberDOB=06%2F25%2F1992&fromDate=9%2F24%2F2013&ProviderName=City%20Of%20Hope&providerId=1750358297&subscriberId=92712515D6&UseCache=false&subscriberLastName=Ayala&subscriberFirstName=Andrew&password=password&serviceTypeCode=30&user=TestConsumer
Headers
Request. .Get("http://www.persons.com/api/People") .WithHeader("", "") .WithHeaders(new {Id = "", FirstName= ""}) .Verify(r => r);
x-medassets-auth: source: 871B8C6B-3833-4BF3-B68A-80620966482B|user:dselukha@medassets.com|clientId:99001|homeFacility:|aaaHomeFacility:d179d1ec-77d4-4ed9-b16b-57a6ee1a2578|accessibleFacilities:1235|hasAllFacilityAccess:False
Dynamic Body
Request .GetAsDynamic("") .Verify(r => r);
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Details
QueryString
Should support both api and strongly typed.
Request
.Get("http://www.persons.com/api/People")
.WithQueryStringValue("", "")
.WithQueryStringValues(new {Id = "", FirstName = ""})
.Verify(r => r);
http://qa-svc-ei.medassets.com/api/Benefits?payerId=24ecae81-193d-41e2-b22b-e4a36932ac09&subscriberDOB=06%2F25%2F1992&fromDate=9%2F24%2F2013&ProviderName=City%20Of%20Hope&providerId=1750358297&subscriberId=92712515D6&UseCache=false&subscriberLastName=Ayala&subscriberFirstName=Andrew&password=password&serviceTypeCode=30&user=TestConsumer
Headers
Should support both api and strongly typed.
Request.
.Get("http://www.persons.com/api/People")
.WithHeader("", "")
.WithHeaders(new {Id = "", FirstName= ""})
.Verify(r => r);
x-medassets-auth: source:
871B8C6B-3833-4BF3-B68A-80620966482B|user:dselukha@medassets.com|clientId:99001|homeFacility:|aaaHomeFacility:d179d1ec-77d4-4ed9-b16b-57a6ee1a2578|accessibleFacilities:1235|hasAllFacilityAccess:False
Dynamic Body
Request
.GetAsDynamic("")
.Verify(r => r);
The text was updated successfully, but these errors were encountered: