Update your profile
Change your name and company on the Profile tab of Settings, or read and update your account through the API.
In the dashboard
Your profile holds your name and your company, beside the email address you sign in with. Keep it current on the Profile tab of Settings, where you also choose the currency you pay in and your billing country.
Before you begin
Section titled Before you begin- Sign in to the dashboard.
Change your name or company
Section titled Change your name or company- In the sidebar, select Settings. The Profile tab opens.
- In Your details, change First name, Last name or Company. Both names are required. Company is optional; empty it to remove it.
- Select Save changes.
Change your currency or country
Section titled Change your currency or country- On the Profile tab, find Billing details.
- Choose a Currency: the currency Coritan charges your card or other payment method in. Prices, invoices and your credit stay in US dollars, and a payment in another currency is converted at the current rate.
- Choose a Country. It decides which ways to pay you are offered.
- Select Save billing details.
Currencies and countries explains both choices.
Result
Section titled ResultA message confirms Profile saved. or Billing details saved., and the new name shows in the dashboard straight away.
The Account card beside the form shows what you cannot change here: your Email, the account Status, your Billing mode, your Credit balance and the date you joined (Member since). To change your email address or billing mode, contact support.
Troubleshooting
Section titled TroubleshootingEnter your first name. We print it on your invoices.- The first name is empty. The same message appears for an empty last name.
- Save changes is greyed out
- Nothing in the form has changed yet.
- Could not save your profile
- The change did not save. The message under it gives the reason. Try again, and contact support if it keeps failing.
- Could not load your billing details
- The Billing details card did not load. Select Try again.
Related
Section titled RelatedWith the API
Section titled With the APIRead your account with GET /auth/me:
curl https://api.coritan.com/api/v1/auth/me \
-H "Authorization: Bearer $CORITAN_TOKEN"
{
"id": 4821,
"email": "alex@example.com",
"first_name": "Alex",
"last_name": "Morgan",
"company": null,
"status": "active",
"billing_mode": "prepaid",
"credit_balance": 25.0,
"currency": "USD",
"country_code": "GB",
"currency_source": "default",
"created_at": "2026-09-01T10:15:00"
}
id- Your account number.
email- The address you sign in with.
first_name,last_nameandcompany- Your name and company. Each can be
null. statusactivefor an account that can use the API. A suspended or closed account cannot sign in, so it never sees this answer.billing_modeprepaidorpostpaid. Billing explains the difference.credit_balance- Your credit, in US dollars.
currency- The currency your payments are charged in, as a three-letter code.
country_code- Your billing country, as a two-letter code, or
null. currency_source- How the currency was set:
default,geo(from your location),user(you chose it) oradmin(Coritan set it). created_at- When you created the account.
Change your names with PUT /auth/me. Send only the fields you want to change; a field you leave out keeps its value, and an empty string clears it. The answer is the whole account, as above.
curl -X PUT https://api.coritan.com/api/v1/auth/me \
-H "Authorization: Bearer $CORITAN_TOKEN" \
-H "Content-Type: application/json" \
-d '{"company": "Example Ltd"}'
The currency and country are saved with PATCH /payments/preference, as Currencies and countries shows. The API has no endpoint to change your email address.
API operations on this page
| Method | Path | What it does |
|---|---|---|
GET | /api/v1/auth/me | Get me |
PUT | /api/v1/auth/me | Update me |