Newer
Older
web-services / authors-tools / tests.hurl
POST https://authors-tools.services.istex.fr/v1/orcid-disambiguation/orcidDisambiguation?indent=true
content-type: application/json
[
    {
        "id":"1",
        "value":[{"firstName" : "Rubén", "lastName" : "Vázquez-Cárdenas", "coAuthors" : ["Juan pablo Martínez-Pastor"]}]
    }
]

HTTP 200
[{
    "id": "1",
    "value": "0000-0002-8416-869X"
}]

POST https://authors-tools.services.istex.fr/v1/first-name/gender?indent=true
content-type: application/json
[
    {"id": "1", "value": "Jean Christophe"},
    {"id": "2", "value": "Amke"},
    {"id": "3", "value": "Seong-Eun"},
    {"id": "4", "value": "James A."}
]

HTTP 200
[{
    "id": "1",
    "value": "male"
},
{
    "id": "2",
    "value": "mostly_female"
},
{
    "id": "3",
    "value": "female"
},
{
    "id": "4",
    "value": "male"
}]

POST https://authors-tools.services.istex.fr/v1/corporate/private-public?indent=true
content-type: application/json
[
    {"id": "1", "value": "Abeeway, F-06903 Sophia Antipolis, France"},
    {"id": "2", "value": "AiryLab SARL, 34 Rue Jean Baptiste Malon, F-04800 Greoux Les Bains, France"},
    {"id": "3", "value": "4G TECHNOL, F-06370 Mouans Sartoux, France"},
    {"id": "4", "value": "Univ Cote dAzur, INRIA, Ansys, Nice, France"}
]

HTTP 200
[{
    "id": "1",
    "value": "organisme: abeeway, statut: private"
},
{
    "id": "2",
    "value": "organisme: airylab sarl, statut: private"
},
{
    "id": "3",
    "value": "organisme: 4g technol, statut: Informations manquantes"
},
{
    "id": "4",
    "value": "organisme: univ cote dazur, statut: public"
}]