For AI agents: visit https://erplain.readme.io/v2.0/llms.txt for an index of all pages formatted in Markdown and endpoints in OpenAPI. Append .md to any documentation page URL to get its markdown version.
CurrentUserProfile - Returns the current authenticated user profile
query {
CurrentUserProfile {
id
user_id
company_id
active
label
prevent_negative_inventory
selling_price_level_id
selling_price_level { id }
tax_type
location_id
location { id }
account_representative_id
account_representative { id }
tax_codes { id }
employee_id
employee { id }
cart_items { id }
last_accessed_at
company { id }
user { id }
has_booked_call
impersonating_user_profile { id }
}
}
UserProfile - Returns a single user profile based on the id provided
query GetUserProfile($id: ID) {
UserProfile(id: $id) {
id
user_id
company_id
active
label
prevent_negative_inventory
selling_price_level_id
selling_price_level { id }
tax_type
location_id
location { id }
account_representative_id
account_representative { id }
tax_codes { id }
employee_id
employee { id }
cart_items { id }
last_accessed_at
company { id }
user { id }
has_booked_call
impersonating_user_profile { id }
}
}
{
"id": 100012
}
UserProfiles - Returns a list of user profiles based on filters and ordering