GET
/
v1
/
user
/
profile
/
e2e
curl --request GET \
  --url https://staging.terminal3.io/v1/user/profile/e2e \
  --header 'Authorization: Bearer <token>' \
  --header 'x-api-token: <x-api-token>'
{
  "data": {
    "encrypted_profile": {
      "version": "<string>",
      "nonce": "<string>",
      "ephem_public_key": "<string>",
      "ciphertext": "<string>"
    }
  }
}

We also provide an SDK with a function called makeEncryptedSignedFetchRequest for enterprises to acquire the user signature, please contact us for more details.

Example of usage:

JavaScript
import { makeEncryptedSignedFetchRequest } from "@terminal3/messaging_client";

const t3PublicKey = "b/fo6+4q2FpC0X5Tv32I7s4uT1yaGPPgClsTztVw+UY=";
const userPrivateKey = "OxYourPrivateKey";

const msg = await makeEncryptedSignedFetchRequest(
  null,
  t3PublicKey,
  true,
  userPrivateKey
);

console.log(msg);

Please ensure your message is encoded to work correctly as a query parameter.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

x-api-token
string
required
x-api-subclient-id
string

Query Parameters

version
string
required
Minimum length: 1
nonce
string
required
Minimum length: 1
ephem_public_key
string
required
Minimum length: 1
ciphertext
string
required
Minimum length: 1

Response

200
application/json
Success
data
object
required