User
CSRF token for write operations (POST, PUT, PATCH, DELETE). Required for security when using session authentication. Obtain token from cookie 'csrftoken' or meta tag in HTML.
abc123def456ghi789Session ID and CSRF token cookies.
Format: sessionid=<id>; osessionid=<id>; csrftoken=<token>
sessionid=abc123def456; osessionid=abc123def456; csrftoken=xyz789The currency code to activate (e.g., 'TRY', 'USD'). Must be one of the available currencies.
Currency activated successfully
No content
Invalid currency code
POST /users/activate-currency/ HTTP/1.1
Host: sandbox.akinon.com
X-CSRFToken: abc123def456ghi789
Cookie: sessionid=abc123def456; osessionid=abc123def456; csrftoken=xyz789
Content-Type: application/json
Accept: */*
Content-Length: 24
{
"currency_code": "text"
}No content
CSRF token for write operations (POST, PUT, PATCH, DELETE). Required for security when using session authentication. Obtain token from cookie 'csrftoken' or meta tag in HTML.
abc123def456ghi789Session ID and CSRF token cookies.
Format: sessionid=<id>; osessionid=<id>; csrftoken=<token>
sessionid=abc123def456; osessionid=abc123def456; csrftoken=xyz789User anonymized successfully
No content
Self-anonymization is disabled
PATCH /users/anonymize/ HTTP/1.1
Host: sandbox.akinon.com
X-CSRFToken: abc123def456ghi789
Cookie: sessionid=abc123def456; osessionid=abc123def456; csrftoken=xyz789
Accept: */*
No content
Base64 encoded user ID
Password reset token
Validation result
GET /users/api-reset/{uidb64}/{token}/ HTTP/1.1
Host: sandbox.akinon.com
Accept: */*
Validation result
{
"validlink": true
}Base64 encoded user ID
Password reset token
CSRF token for write operations (POST, PUT, PATCH, DELETE). Required for security when using session authentication. Obtain token from cookie 'csrftoken' or meta tag in HTML.
abc123def456ghi789Session ID and CSRF token cookies.
Format: sessionid=<id>; osessionid=<id>; csrftoken=<token>
sessionid=abc123def456; osessionid=abc123def456; csrftoken=xyz789The new password. Validated against the system's password validators (e.g., minimum length, common passwords).
Confirmation of the new password. Must match 'new_password1'.
Password reset successfully
No content
Invalid token or password mismatch
POST /users/api-reset/{uidb64}/{token}/ HTTP/1.1
Host: sandbox.akinon.com
X-CSRFToken: abc123def456ghi789
Cookie: sessionid=abc123def456; osessionid=abc123def456; csrftoken=xyz789
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 55
"new_password1='password'&new_password2='password'"No content
CSRF token for write operations (POST, PUT, PATCH, DELETE). Required for security when using session authentication. Obtain token from cookie 'csrftoken' or meta tag in HTML.
abc123def456ghi789Session ID and CSRF token cookies.
Format: sessionid=<id>; osessionid=<id>; csrftoken=<token>
sessionid=abc123def456; osessionid=abc123def456; csrftoken=xyz789City name or ID. Validated against available cities in the system.
City updated successfully
ID of the updated city.
City not found
POST /users/change_city/ HTTP/1.1
Host: sandbox.akinon.com
X-CSRFToken: abc123def456ghi789
Cookie: sessionid=abc123def456; osessionid=abc123def456; csrftoken=xyz789
Content-Type: application/json
Accept: */*
Content-Length: 15
{
"city": "text"
}{
"city": 1
}Last updated
Was this helpful?

