batch api needs master api key
This commit is contained in:
parent
4ab2adc25e
commit
7e265b53c9
@ -8,7 +8,7 @@ _Batch Queries are not intended to be used for large query payloads that contain
|
|||||||
|
|
||||||
### Authentication
|
### Authentication
|
||||||
|
|
||||||
An API Key is required to manage your jobs. The following error message appears if you are not [authenticated]({{ site.sqlapi_docs }}/guides/authentication/):
|
The Master API Key is required to manage your jobs. The following error message appears if you are not [authenticated]({{ site.sqlapi_docs }}/guides/authentication/):
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
{
|
{
|
||||||
@ -18,14 +18,14 @@ An API Key is required to manage your jobs. The following error message appears
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
In order to get full access, you must use your API Key.
|
In order to get full access, you must use your Master API Key.
|
||||||
|
|
||||||
Using cURL tool:
|
Using cURL tool:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
curl -X POST -H "Content-Type: application/json" -d '{
|
curl -X POST -H "Content-Type: application/json" -d '{
|
||||||
"query": "{query}"
|
"query": "{query}"
|
||||||
}' "https://{username}.carto.com/api/v2/sql/job?api_key={api_key}"
|
}' "https://{username}.carto.com/api/v2/sql/job?api_key={master_api_key}"
|
||||||
```
|
```
|
||||||
|
|
||||||
Using Node.js request client:
|
Using Node.js request client:
|
||||||
@ -37,7 +37,7 @@ var options = {
|
|||||||
method: "POST",
|
method: "POST",
|
||||||
url: "https://{username}.carto.com/api/v2/sql/job",
|
url: "https://{username}.carto.com/api/v2/sql/job",
|
||||||
qs: {
|
qs: {
|
||||||
"api_key": "{api_key}"
|
"api_key": "{master_api_key}"
|
||||||
},
|
},
|
||||||
headers: {
|
headers: {
|
||||||
"content-type": "application/json"
|
"content-type": "application/json"
|
||||||
|
Loading…
Reference in New Issue
Block a user