This service is a simple user service that is used to manage users.
http://svc_user.bloefish.local:4001/
http://svc_user.bloefish.local:4001/rpc/<version>/<endpoint>
2025-02-12
- Initial version
Gets a user by their user ID.
Contract
interface Request {
user_id: string;
}
interface Response {
user: {
id: string;
default_user: boolean;
created_at: string;
updated_at: string | null;
deleted_at: string | null;
}
}
Get the default user for the platform. If the user does not exist, it will be created.
Contract
type Request = null;
interface Response {
user: {
id: string;
default_user: boolean;
created_at: string;
updated_at: string | null;
deleted_at: string | null;
}
}