{"id":444428,"date":"2026-04-03T02:43:22","date_gmt":"2026-04-03T00:43:22","guid":{"rendered":"https:\/\/www.kafinea.com\/documentation\/uncategorized\/rest-api-crud-operations\/"},"modified":"2026-04-03T02:43:22","modified_gmt":"2026-04-03T00:43:22","password":"","slug":"rest-api-crud-operations","status":"publish","type":"docs","link":"https:\/\/www.kafinea.com\/en\/help\/api\/rest-api-crud-operations\/","title":{"rendered":"REST API &#8211; CRUD Operations"},"content":{"rendered":"<hr>\n<h2>ListTypes \u2014 List available modules<\/h2>\n<p>This operation returns all modules accessible via the API.<\/p>\n<blockquote>\n<p><strong>GET<\/strong> <code>https:\/\/apps.kafinea.com\/{instance}\/webservice.php<\/code><\/p>\n<\/blockquote>\n<div style=\"overflow-x:auto\">\n<table>\n<thead>\n<tr>\n<th>Parameter<\/th>\n<th>Type<\/th>\n<th>Required<\/th>\n<th>Description<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td><code>operation<\/code><\/td>\n<td>string<\/td>\n<td>yes<\/td>\n<td>Must be  <code>listtypes<\/code><\/td>\n<\/tr>\n<tr>\n<td><code>sessionName<\/code><\/td>\n<td>string<\/td>\n<td>yes<\/td>\n<td>Session ID<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n<p><strong>Curl example:<\/strong><\/p>\n<pre><code class=\"language-bash\">curl \"https:\/\/apps.kafinea.com\/YourKafinea\/webservice.php?operation=listtypes&sessionName=YOUR_SESSION_ID\"\n<\/code><\/pre>\n<hr>\n<h2>Describe \u2014 Describe a module<\/h2>\n<p>This operation allows you to view a module&#8217;s fields (type, mandatory status) and available actions.<\/p>\n<blockquote>\n<p><strong>GET<\/strong> <code>https:\/\/apps.kafinea.com\/{instance}\/webservice.php<\/code><\/p>\n<\/blockquote>\n<div style=\"overflow-x:auto\">\n<table>\n<thead>\n<tr>\n<th>Parameter<\/th>\n<th>Type<\/th>\n<th>Required<\/th>\n<th>Description<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td><code>operation<\/code><\/td>\n<td>string<\/td>\n<td>yes<\/td>\n<td>Must be  <code>describe<\/code><\/td>\n<\/tr>\n<tr>\n<td><code>sessionName<\/code><\/td>\n<td>string<\/td>\n<td>yes<\/td>\n<td>Session ID<\/td>\n<\/tr>\n<tr>\n<td><code>elementType<\/code><\/td>\n<td>string<\/td>\n<td>yes<\/td>\n<td>Module name (e.g.: <code>Contacts<\/code>)<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n<p><strong>Curl example:<\/strong><\/p>\n<pre><code class=\"language-bash\">curl \"https:\/\/apps.kafinea.com\/YourKafinea\/webservice.php?operation=describe&sessionName=YOUR_SESSION_ID&elementType=Contacts\"\n<\/code><\/pre>\n<hr>\n<h2>Retrieve \u2014 Retrieve an entity<\/h2>\n<p>Retrieves a specific entity by its Webservice ID (e.g.: <code>21x3456<\/code>).<\/p>\n<blockquote>\n<p><strong>GET<\/strong> <code>https:\/\/apps.kafinea.com\/{instance}\/webservice.php<\/code><\/p>\n<\/blockquote>\n<div style=\"overflow-x:auto\">\n<table>\n<thead>\n<tr>\n<th>Parameter<\/th>\n<th>Type<\/th>\n<th>Required<\/th>\n<th>Description<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td><code>operation<\/code><\/td>\n<td>string<\/td>\n<td>yes<\/td>\n<td>Must be  <code>retrieve<\/code><\/td>\n<\/tr>\n<tr>\n<td><code>sessionName<\/code><\/td>\n<td>string<\/td>\n<td>yes<\/td>\n<td>Session ID<\/td>\n<\/tr>\n<tr>\n<td><code>id<\/code><\/td>\n<td>string<\/td>\n<td>yes<\/td>\n<td>Entity Webservice ID (e.g.: <code>21x3456<\/code>)<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n<p><strong>Curl example:<\/strong><\/p>\n<pre><code class=\"language-bash\">curl \"https:\/\/apps.kafinea.com\/YourKafinea\/webservice.php?operation=retrieve&sessionName=YOUR_SESSION_ID&id=21x3456\"\n<\/code><\/pre>\n<hr>\n<h2>Create \u2014 Create an entity<\/h2>\n<p>Creates a new entity within a module. All mandatory fields must be included. Field values linked to other modules must use the Webservice IDs format (e.g.: <code>21x3456<\/code>).  <\/p>\n<blockquote>\n<p><strong>POST<\/strong> <code>https:\/\/apps.kafinea.com\/{instance}\/webservice.php<\/code><\/p>\n<\/blockquote>\n<div style=\"overflow-x:auto\">\n<table>\n<thead>\n<tr>\n<th>Parameter<\/th>\n<th>Type<\/th>\n<th>Required<\/th>\n<th>Description<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td><code>operation<\/code><\/td>\n<td>string<\/td>\n<td>yes<\/td>\n<td>Must be  <code>create<\/code><\/td>\n<\/tr>\n<tr>\n<td><code>sessionName<\/code><\/td>\n<td>string<\/td>\n<td>yes<\/td>\n<td>Session ID<\/td>\n<\/tr>\n<tr>\n<td><code>element<\/code><\/td>\n<td>JSON<\/td>\n<td>yes<\/td>\n<td>JSON object of the entity (<code>fieldname: fieldvalue<\/code>)<\/td>\n<\/tr>\n<tr>\n<td><code>elementType<\/code><\/td>\n<td>string<\/td>\n<td>yes<\/td>\n<td>Module name (e.g.: <code>Contacts<\/code>)<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n<p><strong>Curl example:<\/strong><\/p>\n<pre><code class=\"language-bash\">curl -X POST https:\/\/apps.kafinea.com\/YourKafinea\/webservice.php \\\n  -d \"operation=create\" \\\n  -d \"sessionName=YOUR_SESSION_ID\" \\\n  -d 'element={\"lastname\":\"Dupont\",\"email\":\"dupont@example.com\",\"assigned_user_id\":\"19x1\"}' \\\n  -d \"elementType=Contacts\"\n<\/code><\/pre>\n<blockquote>\n<p><strong>Warning!<\/strong> For inventory modules (invoices, quotes, orders, etc.), it is mandatory to include the following fields in the <code>element<\/code> object:<\/p>\n<ul>\n<li><code>productid<\/code>  \u2014 Product Webservice ID<\/li>\n<li><code>hdnTaxType<\/code>  \u2014 <code>Individual<\/code> or  <code>Group<\/code><\/li>\n<li><code>LineItems<\/code>  \u2014 Array of products or services<\/li>\n<\/ul>\n<\/blockquote>\n<hr>\n<h2>Update \u2014 Update an entity<\/h2>\n<p>Updates an existing entity. <strong>All fields<\/strong> must be included (not just those modified). The <code>element<\/code> object must contain the entity&#8217;s Webservice ID (e.g.: <code>\"id\": \"21x3456\"<\/code>). <\/p>\n<blockquote>\n<p><strong>POST<\/strong> <code>https:\/\/apps.kafinea.com\/{instance}\/webservice.php<\/code><\/p>\n<\/blockquote>\n<div style=\"overflow-x:auto\">\n<table>\n<thead>\n<tr>\n<th>Parameter<\/th>\n<th>Type<\/th>\n<th>Required<\/th>\n<th>Description<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td><code>operation<\/code><\/td>\n<td>string<\/td>\n<td>yes<\/td>\n<td>Must be  <code>update<\/code><\/td>\n<\/tr>\n<tr>\n<td><code>sessionName<\/code><\/td>\n<td>string<\/td>\n<td>yes<\/td>\n<td>Session ID<\/td>\n<\/tr>\n<tr>\n<td><code>element<\/code><\/td>\n<td>JSON<\/td>\n<td>yes<\/td>\n<td>Complete JSON object of the entity (with <code>id<\/code>)<\/td>\n<\/tr>\n<tr>\n<td><code>elementType<\/code><\/td>\n<td>string<\/td>\n<td>yes<\/td>\n<td>Module name<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n<p><strong>Curl example:<\/strong><\/p>\n<pre><code class=\"language-bash\">curl -X POST https:\/\/apps.kafinea.com\/YourKafinea\/webservice.php \\\n  -d \"operation=update\" \\\n  -d \"sessionName=YOUR_SESSION_ID\" \\\n  -d 'element={\"id\":\"21x3456\",\"lastname\":\"Dupont\",\"email\":\"nouveau@example.com\",\"assigned_user_id\":\"19x1\"}' \\\n  -d \"elementType=Contacts\"\n<\/code><\/pre>\n<h3>Partial Edit on locked entities<\/h3>\n<p>If you need to modify certain fields on locked entities (Permanent Lock, such as a validated invoice), you can use partial editing without unlocking the record.<\/p>\n<blockquote>\n<p><strong>POST<\/strong> <code>https:\/\/apps.kafinea.com\/{instance}\/webservice.php<\/code><\/p>\n<\/blockquote>\n<div style=\"overflow-x:auto\">\n<table>\n<thead>\n<tr>\n<th>Parameter<\/th>\n<th>Type<\/th>\n<th>Required<\/th>\n<th>Description<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td><code>operation<\/code><\/td>\n<td>string<\/td>\n<td>yes<\/td>\n<td>Must be  <code>update<\/code><\/td>\n<\/tr>\n<tr>\n<td><code>sessionName<\/code><\/td>\n<td>string<\/td>\n<td>yes<\/td>\n<td>Session ID<\/td>\n<\/tr>\n<tr>\n<td><code>partial_edit<\/code><\/td>\n<td>int<\/td>\n<td>yes<\/td>\n<td>Must be <code>1<\/code> \u2014 at the same level as <code>operation<\/code>, not in  <code>element<\/code><\/td>\n<\/tr>\n<tr>\n<td><code>element<\/code><\/td>\n<td>JSON<\/td>\n<td>yes<\/td>\n<td>JSON object with <code>id<\/code> and all mandatory fields<\/td>\n<\/tr>\n<tr>\n<td><code>elementType<\/code><\/td>\n<td>string<\/td>\n<td>yes<\/td>\n<td>Module name<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n<p><strong>Operation and restrictions:<\/strong><\/p>\n<ul>\n<li><strong>Allowed fields:<\/strong> statuses, assigned user, order references, and all custom fields.<\/li>\n<li><strong>Blocked product lines:<\/strong> any modification to items, prices, or quantities (Line Items) is ignored in partial edit mode.<\/li>\n<li><strong>Error handling:<\/strong> without the <code>partial_edit=1<\/code> flag, the API returns <code>ACCESSDENIED<\/code>. If the module does not support this mode: <code>ACCESSDENIED \u2013 Partial edit is not supported for module X<\/code>. <\/li>\n<\/ul>\n<blockquote>\n<p><strong>Warning!<\/strong> Even in <code>partial_edit<\/code> mode, the <code>element<\/code> object must contain <strong>all mandatory fields<\/strong> of the module, exactly as for a standard update.<\/p>\n<\/blockquote>\n<p><strong>Curl example:<\/strong><\/p>\n<pre><code class=\"language-bash\">curl -X POST https:\/\/apps.kafinea.com\/YourKafinea\/webservice.php \\\n  -d \"operation=update\" \\\n  -d \"sessionName=YOUR_SESSION_ID\" \\\n  -d \"partial_edit=1\" \\\n  -d 'element={\"id\":\"7x1234\",\"invoicestatus\":\"Paid\",\"assigned_user_id\":\"19x1\"}' \\\n  -d \"elementType=Invoice\"\n<\/code><\/pre>\n<hr>\n<h2>Delete \u2014 Delete an entity<\/h2>\n<p>Deletes a specific entity by its Webservice ID (e.g.: <code>21x3456<\/code>).<\/p>\n<blockquote>\n<p><strong>POST<\/strong> <code>https:\/\/apps.kafinea.com\/{instance}\/webservice.php<\/code><\/p>\n<\/blockquote>\n<div style=\"overflow-x:auto\">\n<table>\n<thead>\n<tr>\n<th>Parameter<\/th>\n<th>Type<\/th>\n<th>Required<\/th>\n<th>Description<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td><code>operation<\/code><\/td>\n<td>string<\/td>\n<td>yes<\/td>\n<td>Must be  <code>delete<\/code><\/td>\n<\/tr>\n<tr>\n<td><code>sessionName<\/code><\/td>\n<td>string<\/td>\n<td>yes<\/td>\n<td>Session ID<\/td>\n<\/tr>\n<tr>\n<td><code>id<\/code><\/td>\n<td>string<\/td>\n<td>yes<\/td>\n<td>Entity Webservice ID (e.g.: <code>21x3456<\/code>)<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n<p><strong>Curl example:<\/strong><\/p>\n<pre><code class=\"language-bash\">curl -X POST https:\/\/apps.kafinea.com\/YourKafinea\/webservice.php \\\n  -d \"operation=delete\" \\\n  -d \"sessionName=YOUR_SESSION_ID\" \\\n  -d \"id=21x3456\"\n<\/code><\/pre>\n<hr>\n<h2>Related references \ud83d\udd17<\/h2>\n<ul>\n<li><a href=\"https:\/\/www.kafinea.com\/en\/documentation\/api\/rest-api-introduction\/\">API Introduction<\/a><\/li>\n<li><a href=\"https:\/\/www.kafinea.com\/en\/documentation\/api\/rest-api-authentication\/\">Authentication<\/a><\/li>\n<li><a href=\"https:\/\/www.kafinea.com\/en\/documentation\/api\/rest-api-entity-relationships\/\">Related operations<\/a><\/li>\n<li><a href=\"https:\/\/www.kafinea.com\/en\/documentation\/api\/rest-api-requests-and-querying\/\">Requests and querying<\/a><\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>ListTypes \u2014 List available modules This operation returns all modules accessible via the API. GET https:\/\/apps.kafinea.com\/{instance}\/webservice.php Parameter Type Required Description operation string yes Must be listtypes sessionName string yes Session ID Curl example: curl &#8220;https:\/\/apps.kafinea.com\/YourKafinea\/webservice.php?operation=listtypes&#038;sessionName=YOUR_SESSION_ID&#8221; Describe \u2014 Describe a module This operation allows you to view a module&#8217;s fields (type, mandatory status) and available actions&#8230;.<\/p>\n","protected":false},"author":4,"featured_media":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_uag_custom_page_level_css":"","_kad_post_transparent":"","_kad_post_title":"","_kad_post_layout":"","_kad_post_sidebar_id":"","_kad_post_content_style":"","_kad_post_vertical_padding":"","_kad_post_feature":"","_kad_post_feature_position":"","_kad_post_header":false,"_kad_post_footer":false,"_kad_post_classname":"","footnotes":""},"doc_category":[759],"doc_tag":[],"class_list":["post-444428","docs","type-docs","status-publish","hentry","doc_category-api"],"year_month":"2026-08","word_count":720,"total_views":"2","reactions":{"happy":"0","normal":"0","sad":"0"},"author_info":{"name":"David Valminos","author_nicename":"david","author_url":"https:\/\/www.kafinea.com\/en\/author\/david\/"},"doc_category_info":[{"term_name":"API","term_url":"https:\/\/www.kafinea.com\/en\/help\/api\/"}],"doc_tag_info":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Help - REST API - CRUD Operations &#8226; Kafinea<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.kafinea.com\/en\/help\/api\/rest-api-crud-operations\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Help - REST API - CRUD Operations &#8226; Kafinea\" \/>\n<meta property=\"og:description\" content=\"ListTypes \u2014 List available modules This operation returns all modules accessible via the API. GET https:\/\/apps.kafinea.com\/{instance}\/webservice.php Parameter Type Required Description operation string yes Must be listtypes sessionName string yes Session ID Curl example: curl &quot;https:\/\/apps.kafinea.com\/YourKafinea\/webservice.php?operation=listtypes&amp;sessionName=YOUR_SESSION_ID&quot; Describe \u2014 Describe a module This operation allows you to view a module&#8217;s fields (type, mandatory status) and available actions....\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.kafinea.com\/en\/help\/api\/rest-api-crud-operations\/\" \/>\n<meta property=\"og:site_name\" content=\"Kafinea\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.kafinea.com\\\/en\\\/help\\\/api\\\/rest-api-crud-operations\\\/\",\"url\":\"https:\\\/\\\/www.kafinea.com\\\/en\\\/help\\\/api\\\/rest-api-crud-operations\\\/\",\"name\":\"Help - REST API - CRUD Operations &#8226; Kafinea\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.kafinea.com\\\/en\\\/#website\"},\"datePublished\":\"2026-04-03T00:43:22+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.kafinea.com\\\/en\\\/help\\\/api\\\/rest-api-crud-operations\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.kafinea.com\\\/en\\\/help\\\/api\\\/rest-api-crud-operations\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.kafinea.com\\\/en\\\/help\\\/api\\\/rest-api-crud-operations\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\\\/\\\/www.kafinea.com\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"REST API &#8211; CRUD Operations\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.kafinea.com\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/www.kafinea.com\\\/en\\\/\",\"name\":\"Kafinea\",\"description\":\"Une solution unique pour toutes vos ambitions\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.kafinea.com\\\/en\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.kafinea.com\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.kafinea.com\\\/en\\\/#organization\",\"name\":\"Kafinea\",\"url\":\"https:\\\/\\\/www.kafinea.com\\\/en\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.kafinea.com\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.kafinea.com\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/Logo-Kafinea-SVG-orange-bleu.svg\",\"contentUrl\":\"https:\\\/\\\/www.kafinea.com\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/Logo-Kafinea-SVG-orange-bleu.svg\",\"width\":296.31,\"height\":66.48,\"caption\":\"Kafinea\"},\"image\":{\"@id\":\"https:\\\/\\\/www.kafinea.com\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.linkedin.com\\\/company\\\/kafinea\\\/\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Help - REST API - CRUD Operations &#8226; Kafinea","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.kafinea.com\/en\/help\/api\/rest-api-crud-operations\/","og_locale":"en_US","og_type":"article","og_title":"Help - REST API - CRUD Operations &#8226; Kafinea","og_description":"ListTypes \u2014 List available modules This operation returns all modules accessible via the API. GET https:\/\/apps.kafinea.com\/{instance}\/webservice.php Parameter Type Required Description operation string yes Must be listtypes sessionName string yes Session ID Curl example: curl \"https:\/\/apps.kafinea.com\/YourKafinea\/webservice.php?operation=listtypes&sessionName=YOUR_SESSION_ID\" Describe \u2014 Describe a module This operation allows you to view a module&#8217;s fields (type, mandatory status) and available actions....","og_url":"https:\/\/www.kafinea.com\/en\/help\/api\/rest-api-crud-operations\/","og_site_name":"Kafinea","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.kafinea.com\/en\/help\/api\/rest-api-crud-operations\/","url":"https:\/\/www.kafinea.com\/en\/help\/api\/rest-api-crud-operations\/","name":"Help - REST API - CRUD Operations &#8226; Kafinea","isPartOf":{"@id":"https:\/\/www.kafinea.com\/en\/#website"},"datePublished":"2026-04-03T00:43:22+00:00","breadcrumb":{"@id":"https:\/\/www.kafinea.com\/en\/help\/api\/rest-api-crud-operations\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.kafinea.com\/en\/help\/api\/rest-api-crud-operations\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.kafinea.com\/en\/help\/api\/rest-api-crud-operations\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.kafinea.com\/en\/"},{"@type":"ListItem","position":2,"name":"REST API &#8211; CRUD Operations"}]},{"@type":"WebSite","@id":"https:\/\/www.kafinea.com\/en\/#website","url":"https:\/\/www.kafinea.com\/en\/","name":"Kafinea","description":"Une solution unique pour toutes vos ambitions","publisher":{"@id":"https:\/\/www.kafinea.com\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.kafinea.com\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.kafinea.com\/en\/#organization","name":"Kafinea","url":"https:\/\/www.kafinea.com\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.kafinea.com\/en\/#\/schema\/logo\/image\/","url":"https:\/\/www.kafinea.com\/wp-content\/uploads\/2024\/10\/Logo-Kafinea-SVG-orange-bleu.svg","contentUrl":"https:\/\/www.kafinea.com\/wp-content\/uploads\/2024\/10\/Logo-Kafinea-SVG-orange-bleu.svg","width":296.31,"height":66.48,"caption":"Kafinea"},"image":{"@id":"https:\/\/www.kafinea.com\/en\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.linkedin.com\/company\/kafinea\/"]}]}},"uagb_featured_image_src":{"full":false,"thumbnail":false,"medium":false,"medium_large":false,"large":false,"1536x1536":false,"2048x2048":false},"uagb_author_info":{"display_name":"David Valminos","author_link":"https:\/\/www.kafinea.com\/en\/author\/david\/"},"uagb_comment_info":0,"uagb_excerpt":"ListTypes \u2014 List available modules This operation returns all modules accessible via the API. GET https:\/\/apps.kafinea.com\/{instance}\/webservice.php Parameter Type Required Description operation string yes Must be listtypes sessionName string yes Session ID Curl example: curl \"https:\/\/apps.kafinea.com\/YourKafinea\/webservice.php?operation=listtypes&sessionName=YOUR_SESSION_ID\" Describe \u2014 Describe a module This operation allows you to view a module&#8217;s fields (type, mandatory status) and available actions....","_links":{"self":[{"href":"https:\/\/www.kafinea.com\/en\/wp-json\/wp\/v2\/docs\/444428","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.kafinea.com\/en\/wp-json\/wp\/v2\/docs"}],"about":[{"href":"https:\/\/www.kafinea.com\/en\/wp-json\/wp\/v2\/types\/docs"}],"author":[{"embeddable":true,"href":"https:\/\/www.kafinea.com\/en\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/www.kafinea.com\/en\/wp-json\/wp\/v2\/comments?post=444428"}],"version-history":[{"count":0,"href":"https:\/\/www.kafinea.com\/en\/wp-json\/wp\/v2\/docs\/444428\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.kafinea.com\/en\/wp-json\/wp\/v2\/media?parent=444428"}],"wp:term":[{"taxonomy":"doc_category","embeddable":true,"href":"https:\/\/www.kafinea.com\/en\/wp-json\/wp\/v2\/doc_category?post=444428"},{"taxonomy":"doc_tag","embeddable":true,"href":"https:\/\/www.kafinea.com\/en\/wp-json\/wp\/v2\/doc_tag?post=444428"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}