-
Notifications
You must be signed in to change notification settings - Fork 0
HOWTO: Find my vendor ID
Bill McKinney (EBSCO) edited this page Mar 27, 2019
·
1 revision
In order to create custom packages and titles, you need to pass in your vendor ID. You also need to add it to the ebsco.ini file.
You can discover that by making the following call to the API:
curl "https://sandbox.ebsco.io/rm/rmaccounts/your-customer-id/" \
-H 'Accept: application/json' \
-H 'X-api-key: your-api-key'
Response (see vendorId included below):
{
"proxy":{
"id":"dmpqa"
},
"vendorId":"789",
"ftfTokens":[
{
"key":"CCC.LicenseType",
"token":"--"
},
{
"key":"CCC.Password",
"token":"--"
},
{
"key":"CCC.Username",
"token":"--"
},
{
"key":"COAlliance.Id",
"token":"---"
},
{
"key":"EBSCOILL.Email",
"token":"--"
},
{
"key":"EBSCOILL.FormNumber",
"token":"--"
},
{
"key":"FirstSearch.AuthorizationCode",
"token":"--"
},
{
"key":"MDConsult.Password",
"token":"---"
},
{
"key":"MDConsult.Username",
"token":"---"
},
{
"key":"OCLC.Symbol",
"token":"--"
},
{
"key":"OVID.Password",
"token":"--"
},
{
"key":"OVID.UserId",
"token":"--"
},
{
"key":"password.csa",
"token":"-"
},
{
"key":"Relais.Password",
"token":"--"
},
{
"key":"Relais.Username",
"token":"--"
},
{
"key":"SOD.Email",
"token":"--"
},
{
"key":"SOD.InstitutionCode",
"token":"--"
},
{
"key":"SyndeticsClient.Id",
"token":"--"
},
{
"key":"user.csa",
"token":"-"
}
],
"labels":[
{
"id":1,
"displayLabel":"hey",
"displayOnFullTextFinder":false,
"displayOnPublicationFinder":false
}
]
}