{"id":13589,"date":"2022-04-29T15:58:38","date_gmt":"2022-04-29T15:58:38","guid":{"rendered":"https:\/\/docs_v3.dataforseo.com\/v3\/?page_id=13589"},"modified":"2023-10-20T15:25:35","modified_gmt":"2023-10-20T15:25:35","slug":"app_data-google-app_info-task_post","status":"publish","type":"page","link":"https:\/\/docs.dataforapps.com\/v3\/app_data-google-app_info-task_post\/","title":{"rendered":"app_data\/google\/app_info\/task_post"},"content":{"rendered":"<p>[vc_row][vc_column][vc_column_text]<\/p>\n<h2 id=\"setting-app-info-tasks\">Setting Google App Info Tasks<\/h2>\n<p>\u200c\u200c<br \/>\nThis endpoint will provide you with information about the Google Play application specified in the <code>app_id<\/code> field of the POST request.<\/p>\n<p>The <code>app_id<\/code> parameter can be found on the Google Play website as a part of the URL pointing to a specific mobile application. For example, here is the URL of the Telegram app on Google Play:<\/p>\n<p><code>https:\/\/play.google.com\/store\/apps\/details?id=org.telegram.messenger<\/code><\/p>\n<p>The <code>app_id<\/code> of this app is <code>org.telegram.messenger<\/code><\/p>\n<p>[\/vc_column_text]\n        <blockquote>\n            <p>Instead of \u2018login\u2019 and \u2018password\u2019 use your credentials from https:\/\/app.dataforapps.com\/api-dashboard<\/p>\n        <\/blockquote>\n        <pre class=\"highlight bash tab-bash\" style=\"display: none;\">\n            <\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"bash\" data-enlighter-theme=\"mocha\">\r\n# Instead of 'login' and 'password' use your credentials from https:\/\/app.dataforapps.com\/api-dashboard \r\nlogin=\"login\" \r\npassword=\"password\" \r\ncred=\"$(printf ${login}:${password} | base64)\" \r\ncurl --location --request POST \"https:\/\/api.dataforapps.com\/v3\/app_data\/google\/app_info\/task_post\" \r\n--header \"Authorization: Basic ${cred}\"  \r\n--header \"Content-Type: application\/json\" \r\n--data-raw \"[\r\n    {\r\n        \"app_id\": \"org.telegram.messenger\",\r\n        \"location_code\": 2840,\r\n        \"language_code\": \"en\"\r\n    }\r\n]\"\r\n<\/pre>\n<p>\n        <\/pre>\n        <pre class=\"highlight php tab-php\" style=\"display: block;\"><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"php\" data-enlighter-theme=\"mocha\">&lt;?php\r\n\/\/ You can download this file from here https:\/\/cdn.dataforapps.com\/v3\/examples\/php\/php_RestClient.zip\r\nrequire('RestClient.php');\r\n$api_url = 'https:\/\/api.dataforapps.com\/';\r\n\/\/ Instead of 'login' and 'password' use your credentials from https:\/\/app.dataforapps.com\/api-dashboard\r\n$client = new RestClient($api_url, null, 'login', 'password');\r\n\r\n$post_array = array();\r\n\/\/ example #1 - a simple way to set a task\r\n$post_array[] = array(\r\n    \"app_id\": \"org.telegram.messenger\",\r\n    \"location_code\": 2840,\r\n    \"language_code\": \"en\"\r\n);\r\n\/\/ example #2 - a way to set a task with additional parameters\r\n\/\/ high priority allows us to complete a task faster, but you will be charged more money.\r\n\/\/ after a task is completed, we will send a GET request to the address you specify. Instead of $id and $tag, you will receive actual values that are relevant to this task.\r\n$post_array[] = array(\r\n   \"app_id\" =&gt; \"org.telegram.messenger\",\r\n   \"priority\" =&gt; 2,\r\n   \"location_code\" =&gt; 2840,\r\n   \"language_code\" =&gt; \"en\"\r\n);\r\n\/\/ example #3 - an alternative way to set a task\r\n\/\/ after a task is completed, we will send the results according to the address you set in the 'postback_url' field.\r\n$post_array[] = array(\r\n   \"app_id\" =&gt; \"org.telegram.messenger\",\r\n   \"location_code\" =&gt; 2840,\r\n   \"language_code\" =&gt; \"en\",\r\n   \"postback_data\" =&gt; \"html\",\r\n   \"postback_url\" =&gt; \"https:\/\/your-server.com\/postbackscript\"\r\n);\r\n\/\/ this example has a 2 elements, but in the case of large number of tasks - send up to 100 elements per POST request\r\nif (count($post_array) &gt; 0) {\r\n   try {\r\n      \/\/ POST \/v3\/app_data\/google\/app_info\/task_post\r\n      $result = $client-&gt;post('\/v3\/app_data\/google\/app_info\/task_post', $post_array);\r\n      print_r($result);\r\n      \/\/ do something with post result\r\n   } catch (RestClientException $e) {\r\n      echo \"n\";\r\n      print \"HTTP code: {$e-&gt;getHttpCode()}n\";\r\n      print \"Error code: {$e-&gt;getCode()}n\";\r\n      print \"Message: {$e-&gt;getMessage()}n\";\r\n      print  $e-&gt;getTraceAsString();\r\n      echo \"n\";\r\n   }\r\n}\r\n$client = null;\r\n?&gt;<\/pre>\n<p><\/pre>\n        <pre class=\"highlight python tab-python\" style=\"display: none;\">\n            <\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"python\" data-enlighter-theme=\"mocha\">from client import RestClient\r\n# You can download this file from here https:\/\/cdn.dataforapps.com\/v3\/examples\/python\/python_Client.zip\r\nclient = RestClient(\"login\", \"password\")\r\npost_data = dict()\r\n# simple way to set a task\r\npost_data[len(post_data)] = dict(\r\n    app_id=\"org.telegram.messenger\",\r\n    location_code=2840,\r\n    language_code=\"en\"\r\n)\r\n# after a task is completed, we will send a GET request to the address you specify\r\n# instead of $id and $tag, you will receive actual values that are relevant to this task\r\npost_data[len(post_data)] = dict(\r\n    app_id=\"org.telegram.messenger\",\r\n    location_code=2840,\r\n    language_code=\"en\",\r\n    priority=2,\r\n    tag=\"some_string_123\",\r\n    pingback_url=\"https:\/\/your-server.com\/pingscript?id=$id&amp;tag=$tag\"\r\n)\r\n# after a task is completed, we will send a GET request to the address you specify\r\n# instead of $id and $tag, you will receive actual values that are relevant to this task\r\npost_data[len(post_data)] = dict(    \r\n    app_id=\"org.telegram.messenger\",\r\n    location_code=2840,\r\n    language_code=\"en\",\r\n    postback_data=\"html\",\r\n    postback_url=\"https:\/\/your-server.com\/postbackscript\"\r\n)\r\n# POST \/v3\/app_data\/google\/app_info\/task_post\r\nresponse = client.post(\"\/v3\/app_data\/google\/app_info\/task_post\", post_data)\r\n# you can find the full list of the response codes here https:\/\/docs.dataforapps.com\/v3\/appendix\/errors\r\nif response[\"status_code\"] == 20000:\r\n    print(response)\r\n    # do something with result\r\nelse:\r\n    print(\"error. Code: %d Message: %s\" % (response[\"status_code\"], response[\"status_message\"]))\r\n<\/pre>\n<p>\n        <\/pre>\n        <pre class=\"highlight javascript tab-javascript\" style=\"display: none;\">\n            <\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"bash\" data-enlighter-theme=\"mocha\">\r\n\r\nconst post_array = [];\r\n\r\npost_array.push({\r\n  \"app_id\": \"org.telegram.messenger\",\r\n  \"location_code\": 2840,\r\n  \"language_code\": \"en\"\r\n});\r\n\r\nconst axios = require('axios');\r\n\r\naxios({\r\n  method: 'post',\r\n  url: 'https:\/\/api.dataforapps.com\/v3\/app_data\/google\/app_info\/task_post',\r\n  auth: {\r\n    username: 'login',\r\n    password: 'password'\r\n  },\r\n  data: post_array,\r\n  headers: {\r\n    'content-type': 'application\/json'\r\n  }\r\n}).then(function (response) {\r\n  var result = response['data']['tasks'];\r\n  \/\/ Result data\r\n  console.log(result);\r\n}).catch(function (error) {\r\n  console.log(error);\r\n});\r\n<\/pre>\n<p>\n        <\/pre>\n        <pre class=\"highlight csharp tab-csharp\" style=\"display: none;\">\n            <\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"csharp\" data-enlighter-theme=\"mocha\">using Newtonsoft.Json;\r\nusing System;\r\nusing System.Collections.Generic;\r\nusing System.Net.Http;\r\nusing System.Net.Http.Headers;\r\nusing System.Text;\r\nusing System.Threading.Tasks;\r\n\r\nnamespace DataForSeoDemos\r\n{\r\n    public static partial class Demos\r\n    {\r\n        public static async Task app_data_google_app_info_task_post()\r\n        {\r\n            var httpClient = new HttpClient\r\n            {\r\n                BaseAddress = new Uri(\"https:\/\/api.dataforapps.com\/\"),\r\n                \/\/ Instead of 'login' and 'password' use your credentials from https:\/\/app.dataforapps.com\/api-dashboard\r\n                DefaultRequestHeaders = { Authorization = new AuthenticationHeaderValue(\"Basic\", Convert.ToBase64String(Encoding.ASCII.GetBytes(\"login:password\"))) }\r\n            };\r\n            var postData = new List&lt;object&gt;();\r\n            \/\/ simple way to set a task\r\n            postData.Add(new\r\n            {\r\n                app_id = \"org.telegram.messenger\",\r\n                location_code = 2840,\r\n                language_code = \"en\"\r\n            });\r\n            \/\/ after a task is completed, we will send a GET request to the address you specify\r\n            \/\/ instead of $id and $tag, you will receive actual values that are relevant to this task\r\n            postData.Add(new\r\n            {\r\n                app_id = \"org.telegram.messenger\",\r\n                location_code = 2840,\r\n                language_code = \"en\",\r\n                priority = 2,\r\n                tag = \"some_string_123\",\r\n                pingback_url = \"https:\/\/your-server.com\/pingscript?id=$id&amp;tag=$tag\"\r\n            });\r\n            \/\/ after a task is completed, we will send a GET request to the address you specify\r\n            \/\/ instead of $id and $tag you will receive actual values that are relevant to this task\r\n            postData.Add(new\r\n            {\r\n                app_id = \"org.telegram.messenger\",\r\n                location_code = 2840,\r\n                language_code = \"en\",\r\n                postback_data = \"html\",\r\n                postback_url = \"https:\/\/your-server.com\/postbackscript\"\r\n            });\r\n            \/\/ POST \/v3\/app_data\/google\/app_info\/task_post\r\n            var taskPostResponse = await httpClient.PostAsync(\"\/v3\/app_data\/google\/app_info\/task_post\", new StringContent(JsonConvert.SerializeObject(postData)));\r\n            var result = JsonConvert.DeserializeObject&lt;dynamic&gt;(await taskPostResponse.Content.ReadAsStringAsync());\r\n            \/\/ you can find the full list of the response codes here https:\/\/docs.dataforapps.com\/v3\/appendix\/errors\r\n            if (result.status_code == 20000)\r\n            {\r\n                \/\/ do something with result\r\n                Console.WriteLine(result);\r\n            }\r\n            else\r\n                Console.WriteLine($\"error. Code: {result.status_code} Message: {result.status_message}\");\r\n        }\r\n    }\r\n}\r\n<\/pre>\n<p>\n        <\/pre>\n        <blockquote>\n            <p>The above command returns JSON structured like this:<\/p>\n        <\/blockquote>\n        <pre class=\"json tab-json\"><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"json\" data-enlighter-theme=\"mocha\">{\r\n    \"version\": \"0.1.20220422\",\r\n    \"status_code\": 20000,\r\n    \"status_message\": \"Ok.\",\r\n    \"time\": \"0.1068 sec.\",\r\n    \"cost\": 0.0006,\r\n    \"tasks_count\": 1,\r\n    \"tasks_error\": 0,\r\n    \"tasks\": [\r\n        {\r\n            \"id\": \"04221256-2806-0419-0000-6fcf9a118d0b\",\r\n            \"status_code\": 20100,\r\n            \"status_message\": \"Task Created.\",\r\n            \"time\": \"0.0173 sec.\",\r\n            \"cost\": 0.0006,\r\n            \"result_count\": 0,\r\n            \"path\": [\r\n                \"v3\",\r\n                \"app_data\",\r\n                \"google\",\r\n                \"app_info\",\r\n                \"task_post\"\r\n            ],\r\n            \"data\": {\r\n                \"api\": \"app_data\",\r\n                \"function\": \"app_info\",\r\n                \"se\": \"google\",\r\n                \"app_id\": \"org.telegram.messenger\",\r\n                \"location_code\": 2840,\r\n                \"language_code\": \"en\",\r\n                \"se_type\": \"app_info\",\r\n                \"device\": \"desktop\",\r\n                \"os\": \"windows\"\r\n            },\r\n            \"result\": null\r\n        }\r\n    ]\r\n}<\/pre>\n<p><\/pre><aside class=\"success\"><b><code>POST https:\/\/api.dataforapps.com\/v3\/app_data\/google\/app_info\/task_post<\/code><\/b><\/aside><aside class=\"notice\"> Your account will be charged for setting a task. The cost can be calculated on the <a title=\"Pricing\" href=\"https:\/\/dataforapps.com\/pricing\/\" target=\"_blank\" rel=\"noopener noreferrer\">Pricing<\/a> page.<\/aside>[vc_column_text]All POST data should be sent in the <a href=\"https:\/\/en.wikipedia.org\/wiki\/JSON\">JSON<\/a> format (UTF-8 encoding). Task setting is done using the POST method. When setting a task, you should send all task parameters in the task array of the generic POST array. You can send up to 2000 API calls per minute, with each POST call containing no more than 100 tasks. If your POST call contains over 100 tasks, the tasks over this limit will return the <code>40006<\/code> error.<\/p>\n<p>You can retrieve the results of completed tasks using the unique task identifier <code>id<\/code>. Alternatively, we can send them to you as soon as they are ready if you specify the <code>postback_url<\/code> or <code>pingback_url<\/code> when setting a task. Note that if your server doesn&#8217;t respond within 10 seconds, the connection will be aborted by timeout, and the task will be transferred to the <a href=\"\/v3\/app_data\/google\/app_info\/tasks_ready\" rel=\"noopener noreferrer\" target=\"_blank\">&#8216;Tasks Ready&#8217;<\/a> list. The error code and message depend on your server&#8217;s configuration.<\/p>\n<p>Below you will find a detailed description of the fields you can use for setting a task.<\/p>\n<p><strong>Description of the fields for setting a task:<\/strong><\/p>\n<table style=\"width: 100%; height: 1510px;\">\n<thead>\n<tr style=\"height: 24px;\">\n<th style=\"width: 12.4003%; height: 24px;\">Field name<\/th>\n<th style=\"width: 3.91588%; height: 24px;\">Type<\/th>\n<th style=\"width: 82.9587%; height: 24px;\">Description<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr style=\"height: 168px;\">\n<td style=\"width: 12.4003%; height: 168px;\"><code>app_id<\/code><\/td>\n<td style=\"width: 3.91588%; height: 168px;\">string<\/td>\n<td style=\"width: 82.9587%; height: 168px;\"><em>id of the app<\/em><br \/>\n<strong>required field<\/strong><br \/>\nID of the mobile application on Google Play;<br \/>\nyou can find the ID in the URL of every app listed on Google Play;<br \/>\nexample:<br \/>\nin the URL <code>https:\/\/play.google.com\/store\/apps\/details?id=<strong>org.telegram.messenger<\/strong><\/code><br \/>\nthe id is <code>org.telegram.messenger<\/code>\n<\/td>\n<\/tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 12.4003%; height: 10px;\"><code>location_name<\/code><\/td>\n<td style=\"width: 3.91588%; height: 10px;\">string<\/td>\n<td style=\"width: 82.9587%; height: 10px;\"><em>full name of search engine location<\/em><br \/>\n<strong>required field if you don&#8217;t specify <code>location_code<\/code><\/strong><br \/>\n<strong>if you use this field, you don&#8217;t need to specify <code>location_code<\/code><\/strong><br \/>\nyou can receive the list of available locations of the search engine with their <code>location_name<\/code> by making a separate request to <code>https:\/\/api.dataforapps.com\/v3\/app_data\/google\/locations<\/code><br \/>\nexample:<br \/>\n<code class=\"long-string\">West Los Angeles,California,United States<\/code><\/td>\n<\/tr>\n<tr style=\"height: 192px;\">\n<td style=\"width: 12.4003%; height: 169px;\"><code>location_code<\/code><\/td>\n<td style=\"width: 3.91588%; height: 169px;\">integer<\/td>\n<td style=\"width: 82.9587%; height: 169px;\"><em>search engine location code<\/em><br \/>\n<strong>required field if you don&#8217;t specify <code>location_name<\/code><\/strong><br \/>\n<strong>if you use this field, you don&#8217;t need to specify <code>location_name<\/code><\/strong><br \/>\nyou can receive the list of available locations of the search engine with their <code>location_code<\/code> by making a separate request to <code>https:\/\/api.dataforapps.com\/v3\/app_data\/google\/locations<\/code><br \/>\nexample:<br \/>\n<code class=\"long-string\">9061121<\/code><\/td>\n<\/tr>\n<tr style=\"height: 168px;\">\n<td style=\"width: 12.4003%; height: 168px;\"><code>language_name<\/code><\/td>\n<td style=\"width: 3.91588%; height: 168px;\">string<\/td>\n<td style=\"width: 82.9587%; height: 168px;\"><em>full name of search engine language<\/em><br \/>\noptional field<br \/>\n<strong>if you use this field, you don&#8217;t need to specify <code>language_code<\/code><\/strong><br \/>\nyou can receive the list of available languages with <code>language_name<\/code> by making a separate request to <code>https:\/\/api.dataforapps.com\/v3\/app_data\/google\/languages<\/code><br \/>\nexample:<br \/>\n<code class=\"long-string\">English<\/code><\/td>\n<\/tr>\n<tr style=\"height: 192px;\">\n<td style=\"width: 12.4003%; height: 163px;\"><code>language_code<\/code><\/td>\n<td style=\"width: 3.91588%; height: 163px;\">string<\/td>\n<td style=\"width: 82.9587%; height: 163px;\"><em>search engine language code<\/em><br \/>\noptional field<br \/>\n<strong>if you use this field, you don&#8217;t need to specify <code>language_name<\/code><\/strong><br \/>\nyou can receive the list of available languages with their <code>language_code<\/code>\u00a0by making a separate request to <code>https:\/\/api.dataforapps.com\/v3\/app_data\/google\/languages<\/code><em><br \/>\n<\/em>example:<em><br \/>\n<\/em><code class=\"long-string\">en<\/code><\/td>\n<\/tr>\n<tr style=\"height: 72px;\">\n<td style=\"width: 38.423%; height: 72px;\"><code>priority<\/code><\/td>\n<td style=\"width: 1.75219%; height: 72px;\">integer<\/td>\n<td style=\"width: 61.2015%; height: 72px;\"><em>task priority<\/em><br \/>\noptional field<br \/>\ncan take the following values:<br \/>\n1 \u2013 normal execution priority (set by default)<br \/>\n2 \u2013 high execution priority<\/p>\n<aside class=\"notice\">You will be additionally charged for the tasks with high execution priority.<br \/>\nThe cost can be calculated on the <a title=\"Pricing\" href=\"https:\/\/dataforapps.com\/pricing\/\" target=\"_blank\" rel=\"noopener noreferrer\">Pricing<\/a> page.<\/aside>\n<\/td>\n<\/tr>\n<tr style=\"height: 96px;\">\n<td style=\"width: 12.4003%; height: 96px;\"><code>tag<\/code><\/td>\n<td style=\"width: 3.9884%; height: 96px;\">string<\/td>\n<td style=\"width: 82.8862%; height: 96px;\"><em>user-defined task identifier<\/em><br \/>\noptional field<br \/>\n<em>the character limit is 255<\/em><br \/>\nyou can use this parameter to identify the task and match it with the result<br \/>\nyou will find the specified <code>tag<\/code> value in the <code>data<\/code> object of the response<\/td>\n<\/tr>\n<tr style=\"height: 96px;\">\n<td style=\"width: 12.4003%; height: 96px;\"><code>postback_url<\/code><\/td>\n<td style=\"width: 3.9884%; height: 96px;\">string<\/td>\n<td style=\"width: 82.8862%; height: 96px;\"><em>return URL for sending task results<\/em><br \/>\noptional field<br \/>\nonce the task is completed, we will send a POST request with its results compressed in the <code>gzip<\/code> format to the <code>postback_url<\/code> you specified<br \/>\nyou can use the \u2018$id\u2019 string as a <code>$id<\/code> variable and \u2018$tag\u2019 as urlencoded <code>$tag<\/code> variable. We will set the necessary values before sending the request.<br \/>\nexample:<br \/>\n<code>http:\/\/your-server.com\/postbackscript?id=$id<\/code><br \/>\n<code>http:\/\/your-server.com\/postbackscript?id=$id&amp;tag=$tag<\/code><br \/>\n<strong>Note:<\/strong> special symbols in <code>postback_url<\/code> will be urlencoded;<br \/>\ni.a., the <code>#<\/code> symbol will be encoded into <code>%23<\/code><\/td>\n<\/tr>\n<tr style=\"height: 96px;\">\n<td style=\"width: 12.4003%; height: 96px;\"><code>postback_data<\/code><\/td>\n<td style=\"width: 3.9884%; height: 96px;\">string<\/td>\n<td style=\"width: 82.8862%; height: 96px;\"><em>postback_url datatype<\/em><br \/>\n<strong>required field if you specify <code>postback_url<\/code><\/strong><br \/>\ncorresponds to the datatype that will be sent to your server<br \/>\npossible values:<br \/>\n<code>advanced<\/code>, <code>html<\/code><\/td>\n<\/tr>\n<tr style=\"height: 168px;\">\n<td style=\"width: 12.4003%; height: 168px;\"><code>pingback_url<\/code><\/td>\n<td style=\"width: 3.9884%; height: 168px;\">string<\/td>\n<td style=\"width: 82.8862%; height: 168px;\"><em>notification URL of a completed task<\/em><br \/>\noptional field<br \/>\nwhen a task is completed we will notify you by GET request sent to the URL you have specified<br \/>\nyou can use the \u2018$id\u2019 string as a <code>$id<\/code> variable and \u2018$tag\u2019 as urlencoded <code>$tag<\/code> variable. We will set the necessary values before sending the request.<br \/>\nexample:<br \/>\n<code>http:\/\/your-server.com\/pingscript?id=$id<\/code><br \/>\n<code>http:\/\/your-server.com\/pingscript?id=$id&amp;tag=$tag<\/code><br \/>\n<strong>Note:<\/strong> special symbols in <code>pingback_url<\/code> will be urlencoded;<br \/>\ni.a., the <code>#<\/code> symbol will be encoded into <code>%23<\/code><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>\u200c\u200c\u200c\u200c\u200c<br \/>\nAs a response of the API server, you will receive <a href=\"https:\/\/en.wikipedia.org\/wiki\/JSON\">JSON<\/a>-encoded data containing a <code>tasks<\/code> array with the information specific to the set tasks.<\/p>\n<p><strong>Description of the fields in the results array:<\/strong><\/p>\n<table style=\"width: 77.3646%; height: 552px;\">\n<thead>\n<tr style=\"height: 24px;\">\n<th style=\"width: 38.423%; height: 24px;\">Field name<\/th>\n<th style=\"width: 1.25156%; height: 24px;\">Type<\/th>\n<th style=\"width: 61.7021%; height: 24px;\">Description<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr style=\"height: 48px;\">\n<td style=\"width: 24.3517%; height: 48px;\"><code>version<\/code><\/td>\n<td style=\"width: 6.19209%; height: 48px;\">string<\/td>\n<td style=\"width: 79.8065%; height: 48px;\"><em>the current version of the API<\/em><\/td>\n<\/tr>\n<tr style=\"height: 48px;\">\n<td style=\"width: 38.423%; height: 48px;\"><code>status_code<\/code><\/td>\n<td style=\"width: 1.75219%; height: 48px;\">integer<\/td>\n<td style=\"width: 61.2015%; height: 48px;\"><i>general status code<\/i><br \/>\nyou can find the full list of the response codes <a href=\"\/v3\/appendix\/errors\">here<\/a><br \/>\n<strong>Note:<\/strong> we strongly recommend designing a necessary system for handling related exceptional or error conditions<\/td>\n<\/tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 24.3517%; height: 24px;\"><code>status_message<\/code><\/td>\n<td style=\"width: 6.19209%; height: 24px;\">string<\/td>\n<td style=\"width: 79.8065%; height: 24px;\"><em>general informational message<\/em><br \/>\nyou can find the full list of general informational messages <a href=\"\/v3\/appendix\/errors\">here<\/a><\/td>\n<\/tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 38.423%; height: 24px;\"><code>time<\/code><\/td>\n<td style=\"width: 1.25156%; height: 24px;\">string<\/td>\n<td style=\"width: 61.7021%; height: 24px;\"><em>execution time, seconds<\/em><\/td>\n<\/tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 38.423%; height: 24px;\"><code>cost<\/code><\/td>\n<td style=\"width: 1.25156%; height: 24px;\">float<\/td>\n<td style=\"width: 61.7021%; height: 24px;\"><em>total tasks cost, USD<\/em><\/td>\n<\/tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 38.423%; height: 24px;\"><code>tasks_count<\/code><\/td>\n<td style=\"width: 1.25156%; height: 24px;\">integer<\/td>\n<td style=\"width: 61.7021%; height: 24px;\"><em>the number of tasks in the <strong><code>tasks<\/code><\/strong>array<\/em><\/td>\n<\/tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 38.423%; height: 24px;\"><code>tasks_error<\/code><\/td>\n<td style=\"width: 1.25156%; height: 24px;\">integer<\/td>\n<td style=\"width: 61.7021%; height: 24px;\"><em>the number of tasks in the <strong><code>tasks<\/code><\/strong> array returned with an error<\/em><\/td>\n<\/tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 38.423%; height: 24px;\"><strong><code>tasks<\/code><\/strong><\/td>\n<td style=\"width: 1.25156%; height: 24px;\">array<\/td>\n<td style=\"width: 61.7021%; height: 24px;\"><em>array of tasks<\/em><\/td>\n<\/tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 38.423%; height: 24px;\">\u00a0 \u00a0 \u00a0 \u00a0 <code>id<\/code><\/td>\n<td style=\"width: 1.25156%; height: 24px;\">string<\/td>\n<td style=\"width: 61.7021%; height: 24px;\"><em>unique task identifier in our system<\/em><br \/>\nin the <a href=\"https:\/\/en.wikipedia.org\/wiki\/Universally_unique_identifier\">Universally unique identifier (UUID)<\/a> format<\/td>\n<\/tr>\n<tr style=\"height: 48px;\">\n<td style=\"width: 38.423%; height: 48px;\">\u00a0 \u00a0 \u00a0 \u00a0 <code>status_code<\/code><\/td>\n<td style=\"width: 1.25156%; height: 48px;\">integer<\/td>\n<td style=\"width: 61.7021%; height: 48px;\"><em>status code of the task<\/em><br \/>\ngenerated by DataForApps; can be within the following range: 10000-60000<\/td>\n<\/tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 38.423%; height: 24px;\">\u00a0 \u00a0 \u00a0 \u00a0 <code>status_message<\/code><\/td>\n<td style=\"width: 1.25156%; height: 24px;\">string<\/td>\n<td style=\"width: 61.7021%; height: 24px;\"><em>informational message of the task<\/em><\/td>\n<\/tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 38.423%; height: 24px;\">\u00a0 \u00a0 \u00a0 \u00a0 <code>time<\/code><\/td>\n<td style=\"width: 1.25156%; height: 24px;\">string<\/td>\n<td style=\"width: 61.7021%; height: 24px;\"><em>execution time, seconds<\/em><\/td>\n<\/tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 38.423%; height: 24px;\">\u00a0 \u00a0 \u00a0 \u00a0 <code>cost<\/code><\/td>\n<td style=\"width: 1.25156%; height: 24px;\">float<\/td>\n<td style=\"width: 61.7021%; height: 24px;\"><em>cost of the task, USD<\/em><\/td>\n<\/tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 38.423%; height: 24px;\">\u00a0 \u00a0 \u00a0 \u00a0 <code>result_count<\/code><\/td>\n<td style=\"width: 1.25156%; height: 24px;\">integer<\/td>\n<td style=\"width: 61.7021%; height: 24px;\"><em>number of elements in the <code>result<\/code> array<\/em><\/td>\n<\/tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 38.423%; height: 24px;\">\u00a0 \u00a0 \u00a0 \u00a0 <code>path<\/code><\/td>\n<td style=\"width: 1.25156%; height: 24px;\">array<\/td>\n<td style=\"width: 61.7021%; height: 24px;\"><em>URL path<\/em><\/td>\n<\/tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 38.423%; height: 24px;\">\u00a0 \u00a0 \u00a0 \u00a0 <code>data<\/code><\/td>\n<td style=\"width: 1.25156%; height: 24px;\">object<\/td>\n<td style=\"width: 61.7021%; height: 24px;\"><em>contains the same parameters that you specified in the POST request<\/em><\/td>\n<\/tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 38.423%; height: 24px;\">\u00a0 \u00a0 \u00a0 \u00a0 <strong><code>result<\/code><\/strong><\/td>\n<td style=\"width: 1.25156%; height: 24px;\">array<\/td>\n<td style=\"width: 61.7021%; height: 24px;\"><em>array of results<\/em><br \/>\nin this case, the value will be <code>null<\/code><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>\u200c\u200c[\/vc_column_text][\/vc_column][\/vc_row]<\/p>\n","protected":false},"excerpt":{"rendered":"<p>[vc_row][vc_column][vc_column_text] Setting Google App Info Tasks \u200c\u200c This endpoint will provide you with information about the Google Play application specified in the app_id field of the POST request. The app_id parameter can be found on the Google Play website as a part of the URL pointing to a specific mobile application. For example, here is [&hellip;]<\/p>\n","protected":false},"author":6,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"template.php","meta":{"footnotes":""},"_links":{"self":[{"href":"https:\/\/docs.dataforapps.com\/v3\/wp-json\/wp\/v2\/pages\/13589"}],"collection":[{"href":"https:\/\/docs.dataforapps.com\/v3\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/docs.dataforapps.com\/v3\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/docs.dataforapps.com\/v3\/wp-json\/wp\/v2\/users\/6"}],"replies":[{"embeddable":true,"href":"https:\/\/docs.dataforapps.com\/v3\/wp-json\/wp\/v2\/comments?post=13589"}],"version-history":[{"count":10,"href":"https:\/\/docs.dataforapps.com\/v3\/wp-json\/wp\/v2\/pages\/13589\/revisions"}],"predecessor-version":[{"id":17550,"href":"https:\/\/docs.dataforapps.com\/v3\/wp-json\/wp\/v2\/pages\/13589\/revisions\/17550"}],"wp:attachment":[{"href":"https:\/\/docs.dataforapps.com\/v3\/wp-json\/wp\/v2\/media?parent=13589"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}