PUT
/
profiles
curl --request PUT \
  --url https://api.live.paisr.tech/{version}/profiles \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "public_name": "Acme",
  "slogan": "My example slogan",
  "about": "We are a company focussed on providing value to customers.",
  "email": "hello@acme.com",
  "phone": "412345",
  "website": "https://acme.com",
  "primary_color": "#6A66F2",
  "accent_color": "#E6E6FF",
  "target_market": [
    "B2B",
    "B2C"
  ],
  "target_audience": [
    "Local",
    "Regional"
  ]
}'
{
  "success": true,
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

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

Body

application/json
The details required to update your profile.

The body is of type object.

Response

200
application/json
Successfully updated profile details.

The response is of type object.