Developers
  • Dun & Bradstreet Estonia API
  • Test environment
  • Pricing
  • Contact
  • General information
    • searchCompany
    • getCompanyInformation
    • getContacts
    • getAaaRatingWithHistory
    • getCompanyUpdateDate
  • Negative information
    • getTaxArrears
    • getPublicAnnouncements
    • getDebtCollectionCases
  • Persons in company
    • getManagementBoard
    • getShareholdersAndOtherRoles
    • getBeneficialOwner
  • Financial information
    • listAnnualReport
    • getAnnualReport
    • getFinancialInformation
    • getFinancialStatements
    • getTaxInformation
    • getSalaryInformation
  • REAL ESTATE
    • getImmovables
  • Credit reports
    • Company credit report
    • Person credit report
  • Personal Information
    • getPersonInformation
  • TOOLS
    • Person code validator
  • International data
    • BBC API
  • User
    • getProfile
    • getLimits
Powered by GitBook
On this page

Was this helpful?

  1. User

getProfile

Get user profile by email/password.

getProfile

POST https://in.bisnode.ee/rest/getProfile

Example cURL command curl -X POST -k -H 'Content-type: application/json' -i 'https://in.bisnode.ee/rest/getProfile' --data '{"email":"example@bisnode.ee","pass":"11111111111"}'

Request Body

Name
Type
Description

email

string

Email of account

pass

string

Password

{
  "email": "example@bisnode.ee",
  "name": "Firstname Lastname",
  "company_name": "Bisnode AS",
  "reg_code": "10117826",
  "address": "Pronksi 12, Tallinn 10117",
  "role": "list,of,roles",
  "token": "xxxxxxxxxxxxxxx",
  "created": "2014-01-01 12:00:00"
}
{
  "error": "error",
  "code": 404,
  "message": "No such user"
}

This request can be used for authorizarion, then you can store token parameter from response to the session for later usage in other requests.

PreviousBBC APINextgetLimits

Last updated 3 years ago

Was this helpful?