.. _api: === API === Starting from RhodeCode version 1.2 a simple API was implemented. There's a single schema for calling all api methods. API is implemented with JSON protocol both ways. An url to send API request to RhodeCode is /_admin/api API ACCESS FOR WEB VIEWS ++++++++++++++++++++++++ API access can also be turned on for each web view in RhodeCode that is decorated with `@LoginRequired` decorator. To enable API access simple change the standard login decorator to `@LoginRequired(api_access=True)`. To make this operation easier, starting from version 1.7.0 there's a white list of views that will have API access enabled. Simply edit `api_access_controllers_whitelist` option in your .ini file, and define views that should have API access enabled. Following example shows how to enable API access to patch/diff raw file and archive in RhodeCode:: api_access_controllers_whitelist = ChangesetController:changeset_patch, ChangesetController:changeset_raw, FilesController:raw, FilesController:archivefile After this change, a rhodecode view can be accessed without login by adding a GET parameter `?api_key=` to url. By default this is only enabled on RSS/ATOM feed views. Exposing raw diffs is a good way to integrate with 3rd party services like code review, or build farms that could download archives. API ACCESS ++++++++++ All clients are required to send JSON-RPC spec JSON data:: { "id:"", "api_key":"", "method":"", "args":{"":""} } Example call for autopulling remotes repos using curl:: curl https://server.com/_admin/api -X POST -H 'content-type:text/plain' --data-binary '{"id":1,"api_key":"xe7cdb2v278e4evbdf5vs04v832v0efvcbcve4a3","method":"pull","args":{"repo":"CPython"}}' Simply provide - *id* A value of any type, which is used to match the response with the request that it is replying to. - *api_key* for access and permission validation. - *method* is name of method to call - *args* is an key:value list of arguments to pass to method .. note:: api_key can be found in your user account page RhodeCode API will return always a JSON-RPC response:: { "id":, # matching id sent by request "result": ""|null, # JSON formatted result, null if any errors "error": "null"| # JSON formatted error (if any) } All responses from API will be `HTTP/1.0 200 OK`, if there's an error while calling api *error* key from response will contain failure description and result will be null. API CLIENT ++++++++++ From version 1.4 RhodeCode adds a script that allows to easily communicate with API. After installing RhodeCode a `rhodecode-api` script will be available. To get started quickly simply run:: rhodecode-api _create_config --apikey= --apihost= This will create a file named .config in the directory you executed it storing json config file with credentials. You can skip this step and always provide both of the arguments to be able to communicate with server after that simply run any api command for example get_repo:: rhodecode-api get_repo calling {"api_key": "", "id": 75, "args": {}, "method": "get_repo"} to http://127.0.0.1:5000 rhodecode said: {'error': 'Missing non optional `repoid` arg in JSON DATA', 'id': 75, 'result': None} Ups looks like we forgot to add an argument Let's try again now giving the repoid as parameters:: rhodecode-api get_repo repoid:rhodecode calling {"api_key": "", "id": 39, "args": {"repoid": "rhodecode"}, "method": "get_repo"} to http://127.0.0.1:5000 rhodecode said: {'error': None, 'id': 39, 'result': } API METHODS +++++++++++ pull ---- Pulls given repo from remote location. Can be used to automatically keep remote repos up to date. This command can be executed only using api_key belonging to user with admin rights INPUT:: id : api_key : "" method : "pull" args : { "repoid" : "" } OUTPUT:: id : result : "Pulled from ``" error : null rescan_repos ------------ Dispatch rescan repositories action. If remove_obsolete is set RhodeCode will delete repos that are in database but not in the filesystem. This command can be executed only using api_key belonging to user with admin rights. INPUT:: id : api_key : "" method : "rescan_repos" args : { "remove_obsolete" : "" } OUTPUT:: id : result : "{'added': [], 'removed': []}" error : null invalidate_cache ---------------- Invalidate cache for repository. This command can be executed only using api_key belonging to user with admin rights or regular user that have write or admin or write access to repository. INPUT:: id : api_key : "" method : "invalidate_cache" args : { "repoid" : "" } OUTPUT:: id : result : "Caches of repository ``" error : null lock ---- Set locking state on given repository by given user. If userid param is skipped , then it is set to id of user whos calling this method. If locked param is skipped then function shows current lock state of given repo. This command can be executed only using api_key belonging to user with admin rights or regular user that have admin or write access to repository. INPUT:: id : api_key : "" method : "lock" args : { "repoid" : "" "userid" : "", "locked" : "" } OUTPUT:: id : result : { "repo": "", "locked": "", "locked_since": "", "locked_by": "", "msg": "User `` set lock state for repo `` to ``" } error : null show_ip ------- Shows IP address as seen from RhodeCode server, together with all defined IP addresses for given user. This command can be executed only using api_key belonging to user with admin rights. INPUT:: id : api_key : "" method : "show_ip" args : { "userid" : "", } OUTPUT:: id : result : { "ip_addr_server": ", "user_ips": [ { "ip_addr": "", "ip_range": ["", ""], }, ... ] } error : null get_user -------- Get's an user by username or user_id, Returns empty result if user is not found. If userid param is skipped it is set to id of user who is calling this method. This command can be executed only using api_key belonging to user with admin rights, or regular users that cannot specify different userid than theirs INPUT:: id : api_key : "" method : "get_user" args : { "userid" : "" } OUTPUT:: id : result: None if user does not exist or { "user_id" : "", "api_key" : "", "username" : "", "firstname": "", "lastname" : "", "email" : "", "emails": "", "ip_addresses": "", "active" : "", "admin" :  "", "ldap_dn" : "", "last_login": "", "permissions": { "global": ["hg.create.repository", "repository.read", "hg.register.manual_activate"], "repositories": {"repo1": "repository.none"}, "repositories_groups": {"Group1": "group.read"} }, } error: null get_users --------- Lists all existing users. This command can be executed only using api_key belonging to user with admin rights. INPUT:: id : api_key : "" method : "get_users" args : { } OUTPUT:: id : result: [ { "user_id" : "", "api_key" : "", "username" : "", "firstname": "", "lastname" : "", "email" : "", "emails": "", "ip_addresses": "", "active" : "", "admin" :  "", "ldap_dn" : "", "last_login": "", }, … ] error: null create_user ----------- Creates new user. This command can be executed only using api_key belonging to user with admin rights. INPUT:: id : api_key : "" method : "create_user" args : { "username" : "", "email" : "", "password" : "", "firstname" : " = Optional(None)", "lastname" : " = Optional(None)", "active" : " = Optional(True)", "admin" : " = Optional(False)", "ldap_dn" : " = Optional(None)" } OUTPUT:: id : result: { "msg" : "created new user ``", "user": { "user_id" : "", "username" : "", "firstname": "", "lastname" : "", "email" : "", "emails": "", "active" : "", "admin" :  "", "ldap_dn" : "", "last_login": "", }, } error: null update_user ----------- updates given user if such user exists. This command can be executed only using api_key belonging to user with admin rights. INPUT:: id : api_key : "" method : "update_user" args : { "userid" : "", "username" : " = Optional(None)", "email" : " = Optional(None)", "password" : " = Optional(None)", "firstname" : " = Optional(None)", "lastname" : " = Optional(None)", "active" : " = Optional(None)", "admin" : " = Optional(None)", "ldap_dn" : " = Optional(None)" } OUTPUT:: id : result: { "msg" : "updated user ID: ", "user": { "user_id" : "", "api_key" : "", "username" : "", "firstname": "", "lastname" : "", "email" : "", "emails": "", "active" : "", "admin" :  "", "ldap_dn" : "", "last_login": "", }, } error: null delete_user ----------- deletes givenuser if such user exists. This command can be executed only using api_key belonging to user with admin rights. INPUT:: id : api_key : "" method : "delete_user" args : { "userid" : "", } OUTPUT:: id : result: { "msg" : "deleted user ID: ", "user": null } error: null get_users_group --------------- Gets an existing user group. This command can be executed only using api_key belonging to user with admin rights. INPUT:: id : api_key : "" method : "get_users_group" args : { "usersgroupid" : "" } OUTPUT:: id : result : None if group not exist { "users_group_id" : "", "group_name" : "", "active": "", "members" : [ { "user_id" : "", "api_key" : "", "username" : "", "firstname": "", "lastname" : "", "email" : "", "emails": "", "active" : "", "admin" :  "", "ldap_dn" : "", "last_login": "", }, … ] } error : null get_users_groups ---------------- Lists all existing user groups. This command can be executed only using api_key belonging to user with admin rights. INPUT:: id : api_key : "" method : "get_users_groups" args : { } OUTPUT:: id : result : [ { "users_group_id" : "", "group_name" : "", "active": "", }, … ] error : null create_users_group ------------------ Creates new user group. This command can be executed only using api_key belonging to user with admin rights INPUT:: id : api_key : "" method : "create_users_group" args: { "group_name": "", "owner" : "", "active": " = Optional(True)" } OUTPUT:: id : result: { "msg": "created new user group ``", "users_group": { "users_group_id" : "", "group_name" : "", "active": "", }, } error: null add_user_to_users_group ----------------------- Adds a user to a user group. If user exists in that group success will be `false`. This command can be executed only using api_key belonging to user with admin rights INPUT:: id : api_key : "" method : "add_user_users_group" args: { "usersgroupid" : "", "userid" : "", } OUTPUT:: id : result: { "success": True|False # depends on if member is in group "msg": "added member `` to user group `` | User is already in that group" } error: null remove_user_from_users_group ---------------------------- Removes a user from a user group. If user is not in given group success will be `false`. This command can be executed only using api_key belonging to user with admin rights INPUT:: id : api_key : "" method : "remove_user_from_users_group" args: { "usersgroupid" : "", "userid" : "", } OUTPUT:: id : result: { "success": True|False, # depends on if member is in group "msg": "removed member from user group | User wasn't in group" } error: null get_repo -------- Gets an existing repository by it's name or repository_id. Members will return either users_group or user associated to that repository. This command can be executed only using api_key belonging to user with admin rights or regular user that have at least read access to repository. INPUT:: id : api_key : "" method : "get_repo" args: { "repoid" : "" } OUTPUT:: id : result: None if repository does not exist or { "repo_id" : "", "repo_name" : "" "repo_type" : "", "clone_uri" : "", "enable_downloads": "", "enable_locking": "", "enable_statistics": "", "private": "", "created_on" : "", "description" : "", "landing_rev": "", "last_changeset": { "author": "", "date": "", "message": "", "raw_id": "", "revision": "", "short_id": "" } "owner": "", "fork_of": "", "members" : [ { "type": "user", "user_id" : "", "api_key" : "", "username" : "", "firstname": "", "lastname" : "", "email" : "", "emails": "", "active" : "", "admin" :  "", "ldap_dn" : "", "last_login": "", "permission" : "repository.(read|write|admin)" }, … { "type": "users_group", "id" : "", "name" : "", "active": "", "permission" : "repository.(read|write|admin)" }, … ] "followers": [ { "user_id" : "", "username" : "", "api_key" : "", "firstname": "", "lastname" : "", "email" : "", "emails": "", "ip_addresses": "", "active" : "", "admin" :  "", "ldap_dn" : "", "last_login": "", }, … ] } error: null get_repos --------- Lists all existing repositories. This command can be executed only using api_key belonging to user with admin rights or regular user that have admin, write or read access to repository. INPUT:: id : api_key : "" method : "get_repos" args: { } OUTPUT:: id : result: [ { "repo_id" : "", "repo_name" : "" "repo_type" : "", "clone_uri" : "", "private": : "", "created_on" : "", "description" : "", "landing_rev": "", "owner": "", "fork_of": "", "enable_downloads": "", "enable_locking": "", "enable_statistics": "", }, … ] error: null get_repo_nodes -------------- returns a list of nodes and it's children in a flat list for a given path at given revision. It's possible to specify ret_type to show only `files` or `dirs`. This command can be executed only using api_key belonging to user with admin rights INPUT:: id : api_key : "" method : "get_repo_nodes" args: { "repoid" : "" "revision" : "", "root_path" : "", "ret_type" : " = Optional('all')" } OUTPUT:: id : result: [ { "name" : "" "type" : "", }, … ] error: null create_repo ----------- Creates a repository. If repository name contains "/", all needed repository groups will be created. For example "foo/bar/baz" will create groups "foo", "bar" (with "foo" as parent), and create "baz" repository with "bar" as group. This command can be executed only using api_key belonging to user with admin rights or regular user that have create repository permission. Regular users cannot specify owner parameter INPUT:: id : api_key : "" method : "create_repo" args: { "repo_name" : "", "owner" : "", "repo_type" : " = Optional('hg')", "description" : " = Optional('')", "private" : " = Optional(False)", "clone_uri" : " = Optional(None)", "landing_rev" : " = Optional('tip')", "enable_downloads": " = Optional(False)", "enable_locking": " = Optional(False)", "enable_statistics": " = Optional(False)", } OUTPUT:: id : result: { "msg": "Created new repository ``", "repo": { "repo_id" : "", "repo_name" : "" "repo_type" : "", "clone_uri" : "", "private": : "", "created_on" : "", "description" : "", "landing_rev": "", "owner": "", "fork_of": "", "enable_downloads": "", "enable_locking": "", "enable_statistics": "", }, } error: null fork_repo --------- Creates a fork of given repo. In case of using celery this will immidiatelly return success message, while fork is going to be created asynchronous. This command can be executed only using api_key belonging to user with admin rights or regular user that have fork permission, and at least read access to forking repository. Regular users cannot specify owner parameter. INPUT:: id : api_key : "" method : "fork_repo" args: { "repoid" : "", "fork_name": "", "owner": "", "description": "", "copy_permissions": "", "private": "", "landing_rev": "" } OUTPUT:: id : result: { "msg": "Created fork of `` as ``", "success": true } error: null delete_repo ----------- Deletes a repository. This command can be executed only using api_key belonging to user with admin rights or regular user that have admin access to repository. When `forks` param is set it's possible to detach or delete forks of deleting repository INPUT:: id : api_key : "" method : "delete_repo" args: { "repoid" : "", "forks" : "`delete` or `detach` = Optional(None)" } OUTPUT:: id : result: { "msg": "Deleted repository ``", "success": true } error: null grant_user_permission --------------------- Grant permission for user on given repository, or update existing one if found. This command can be executed only using api_key belonging to user with admin rights. INPUT:: id : api_key : "" method : "grant_user_permission" args: { "repoid" : "" "userid" : "" "perm" : "(repository.(none|read|write|admin))", } OUTPUT:: id : result: { "msg" : "Granted perm: `` for user: `` in repo: ``", "success": true } error: null revoke_user_permission ---------------------- Revoke permission for user on given repository. This command can be executed only using api_key belonging to user with admin rights. INPUT:: id : api_key : "" method : "revoke_user_permission" args: { "repoid" : "" "userid" : "" } OUTPUT:: id : result: { "msg" : "Revoked perm for user: `` in repo: ``", "success": true } error: null grant_users_group_permission ---------------------------- Grant permission for user group on given repository, or update existing one if found. This command can be executed only using api_key belonging to user with admin rights. INPUT:: id : api_key : "" method : "grant_users_group_permission" args: { "repoid" : "" "usersgroupid" : "" "perm" : "(repository.(none|read|write|admin))", } OUTPUT:: id : result: { "msg" : "Granted perm: `` for group: `` in repo: ``", "success": true } error: null revoke_users_group_permission ----------------------------- Revoke permission for user group on given repository.This command can be executed only using api_key belonging to user with admin rights. INPUT:: id : api_key : "" method : "revoke_users_group_permission" args: { "repoid" : "" "usersgroupid" : "" } OUTPUT:: id : result: { "msg" : "Revoked perm for group: `` in repo: ``", "success": true } error: null