Authentication & Security
In order to connect to Pureprofile Partner Services you need to authenticate first.
Encrypted Communication
Pureprofile supports encryption to protect communications between Pureprofile and your web application. Just specify an HTTPS URL. Note: Pureprofile does not currently handle self-signed certificates. Pureprofile supports the TLS cryptographic protocol. Support for SSLv3 is officially deprecated.
API Base URL
All URLs in the reference documentation use the following base URL:
https://partner.pureprofile.com/v1
Authentication
HTTP requests to the REST API are protected with HTTP Basic authentication like other REST APIs provided by Pureprofile. To learn more about how Pureprofile handles authentication, please refer to our security documentation. You will use your Pureprofile username and password for HTTP Basic authentication.
curl -G https://partner.pureprofile.com/v1/... \
-u '[username]:[password]'