GET api/listTestsForInviteKey?key={key}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
key | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of TestsPerInviteKeyName | Description | Type | Additional information |
---|---|---|---|
campaignName | string |
None. |
|
inviteKey | string |
None. |
|
testKey | string |
None. |
|
reportKey | string |
None. |
|
testStatus | integer |
None. |
Response Formats
application/json, text/json
Sample:
[ { "campaignName": "sample string 1", "inviteKey": "sample string 2", "testKey": "sample string 3", "reportKey": "sample string 4", "testStatus": 5 }, { "campaignName": "sample string 1", "inviteKey": "sample string 2", "testKey": "sample string 3", "reportKey": "sample string 4", "testStatus": 5 } ]
application/xml, text/xml
Sample:
<ArrayOfTestsPerInviteKey xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/emoscapeBrandV2WebAPI.Models"> <TestsPerInviteKey> <campaignName>sample string 1</campaignName> <inviteKey>sample string 2</inviteKey> <reportKey>sample string 4</reportKey> <testKey>sample string 3</testKey> <testStatus>5</testStatus> </TestsPerInviteKey> <TestsPerInviteKey> <campaignName>sample string 1</campaignName> <inviteKey>sample string 2</inviteKey> <reportKey>sample string 4</reportKey> <testKey>sample string 3</testKey> <testStatus>5</testStatus> </TestsPerInviteKey> </ArrayOfTestsPerInviteKey>