GET exportservice/persons/personidsbypersonalnumbers/{reportGuid}
Returns a previously generated list of person data for provided personal numbers. Use reportGuid returned by POST exportservice/persons/personidsbypersonalnumbers
Request Information
Request URL
https://api.idrottonline.se/exportservice/persons/personidsbypersonalnumbers/{reportGuid}URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
reportGuid |
The unique identifier of the generated list of person data |
globally unique identifier |
Required |
x-svenskidrott-api-version |
The requested API version |
string |
Default value is 1.0 |
api-version |
The requested API version |
string |
Default value is 1.0 |
Body Parameters
None.
Response Information
Resource Description
A list of person data and a list of not found personal numbers
ExportService.DataContracts.Response.GetPersonsByPersonalNumbersResponseName | Description | Type | Additional information |
---|---|---|---|
PersonData |
Data containing PersonId and some extra information |
Collection of ExportService.DataContracts.PersonsByPersonalNumbersData |
None. |
PersonalNumbersNotFound |
Personal numbers that were not found |
Collection of string |
None. |
Response Formats
application/json, text/json
Sample:
{ "PersonData": [ { "PersonalNumber": "sample string 1", "PersonId": 2, "FirstName": "sample string 3", "LastName": "sample string 4" }, { "PersonalNumber": "sample string 1", "PersonId": 2, "FirstName": "sample string 3", "LastName": "sample string 4" } ], "PersonalNumbersNotFound": [ "sample string 1", "sample string 2" ] }