Skip to main content
Every PropOps API endpoint requires authentication. The platform supports two authentication methods depending on your client type.
Browser clients authenticate automatically via session cookies set at login. No additional configuration is needed — the browser sends the session cookie on every request.Session lifetimes:Cookies are set with HttpOnly, Secure (HTTPS only), and SameSite=Lax flags to prevent JavaScript access and cross-site request forgery.

CSRF tokens

State-changing requests — POST, PUT, and DELETE — require a valid CSRF token in addition to your session or Bearer token. This protects against cross-site request forgery attacks.

Get a token

Response

Send the token

Pass the CSRF token in any one of these locations:
CSRF tokens are single-use and session-scoped. Fetch a fresh token for each state-changing operation or at the start of each user session.

Permissions

Access to each endpoint is controlled by a granular permission key in dot-notation, for example api.jobs.manage.manage. Your account inherits permissions from the role your administrator assigns to you. If you call an endpoint your role does not have permission for, you receive 403 Forbidden:
To see your resolved permissions, call:
Contact your PropOps administrator to request additional permissions for your role.