POST ApiAccount/ApiLogin
Request Information
URI Parameters
None.
Body Parameters
ApiLogin| Name | Description | Type | Additional information |
|---|---|---|---|
| PublicApiKey |
The Public API key that was supplied on signup to the API |
string |
None. |
| ApiVersion |
The version parameter that was supplied on signup to the API. |
integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"PublicApiKey": "sample string 1",
"ApiVersion": 2
}
Response Information
Resource Description
AuthorizedSession| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| PublicKeyApiId | integer |
None. |
|
| SessionHeaderId | string |
None. |
|
| PublicApiKey | string |
None. |
|
| CreationDateTime | date |
None. |
|
| LastActivityDateTime | date |
None. |
|
| DataSetCollectionItems | Collection of integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": 1,
"PublicKeyApiId": 2,
"SessionHeaderId": "sample string 3",
"PublicApiKey": "sample string 4",
"CreationDateTime": "2026-03-30T04:30:55.6031713+00:00",
"LastActivityDateTime": "2026-03-30T04:30:55.6031713+00:00",
"DataSetCollectionItems": [
1,
2
]
}