Introduction
IBM® Cloudant® for IBM Cloud® is a document-oriented database as a service (DBaaS). It stores data as documents in JSON format. It is built with scalability, high availability, and durability in mind. It comes with a wide variety of indexing options that include MapReduce, IBM Cloudant Query, and full-text indexing. The replication capabilities make it easy to keep data in sync between database clusters, desktop PCs, and mobile devices.
Detailed documentation is also available such as a Getting started tutorial, API overview documentation, tutorials, and guides.
If you intend to store sensitive information in an IBM® Cloudant® for IBM Cloud® database you must use client-side encryption to render data unreadable to Cloudant operators. For example for PCI DSS compliance you must encrypt the Primary Account Number (PAN) before sending a document containing it to the database.
This documentation describes the SDKs and examples. To see usage information and examples in your preferred SDK, select the language tab in the right pane.
This documentation describes the Java SDK and examples. To see usage information and examples in your preferred SDK, select the language tab in the right pane.
This documentation describes the Node SDK and examples. To see usage information and examples in your preferred SDK, select the language tab in the right pane.
This documentation describes the Python SDK and examples. To see usage information and examples in your preferred SDK, select the language tab in the right pane.
This documentation describes the Go SDK and examples. To see usage information and examples in your preferred SDK, select the language tab in the right pane.
The code examples on this tab use the IBM Cloudant SDK for Java&trade.
Gradle
implementation 'com.ibm.cloud:cloudant:0.+'
Maven
GitHub
The code examples on this tab use the IBM Cloudant SDK for Node.js.
Installation
npm install --save @ibm-cloud/cloudant
GitHub
The code examples on this tab use the IBM Cloudant SDK for Python.
Installation
pip3 install ibmcloudant
GitHub
The code examples on this tab use the IBM Cloudant SDK for Go.
Installation
go get -u github.com/IBM/cloudant-go-sdk/cloudantv1
GitHub
Endpoint URLs
The IBM Cloudant API uses an instance-specific endpoint URL for all regions. You can find your external endpoint by following these steps:
- Go to the IBM Cloud dashboard and open an instance.
- Click the Service credentials tab.
- Click the chevron next to the service credentials to open the credentials pane.
- Copy the value from the
host
field and prefix it with thehttps://
protocol. This value is the external endpoint.
For more information, see the Locating your service credentials tutorial.
Or you can copy your external endpoint by following these steps:
- Go to the IBM Cloud dashboard and open an instance.
- Under the Manage tab on the Overview page, see the External endpoint in the table.
- Click Copy to copy the External endpoint. Paste the endpoint where you need your credentials.
A public endpoint looks something like these examples:
https://5lll032-dd12-536e-09b3-432fg9f07e78-bluemix.cloudantnosqldb.appdomain.cloud
or
https://5lll032-dd12-536e-09b3-432fg9f07e78-bluemix.cloudant.com
A private endpoint is one that is only accessible through a non-public network, like IBM's internal network. Private endpoints are available to customers who have the Dedicated Hardware plan.
Authentication
You can access IBM Cloudant with IBM Cloud® Identity and Access Management (IAM) or IBM Cloudant legacy access controls. The choice between Use only IAM and Use both legacy credentials and IAM access control affects how credentials are delivered to your application when you bind and generate service credentials.
The Use only IAM option is preferred. Review Must I use Use only IAM or Use both legacy credentials and IAM? to help with making a decision.
IAM authentication
Access to IBM Cloudant is centrally controlled by IBM Cloud® Identity and Access Management (IAM), which provides a unified approach to managing user identities, and access control across your IBM Cloud® services and applications using the same set of credentials.
To work with the API, authenticate your application or service by including your IBM Cloud® IAM access token in API requests.
Cloudant legacy authentication
Legacy access controls are unique to IBM Cloudant, which means that accessing each service instance requires its own set of credentials. These credentials can be used with HTTP basic and cookie authentication. IBM Cloudant legacy API keys authenticate identically to username and password credentials but are generated and assigned differently. For more information, see the documentation about IBM Cloudant legacy API keys.
Additional authentication resources
- IBM Cloudant client libraries provide full integration with IAM's access controls and automatically retrieve an IAM access token when an appropriate IAM configuration is provided (for example, an IAM API key or IAM profile ID).
- View IBM Cloudant authentication documentation.
Cookie
Valid only for IBM Cloudant legacy authentication (including legacy IBM Cloudant API keys).
Login session cookies can be created via the POST /_session
endpoint and
returned in the standard Set-Cookie
header. This AuthSession
cookie can
be stored and returned to the server in the Cookie
header on subsequent requests.
This process is handled automatically by IBM Cloudant's SDKs and other cookie aware
HTTP clients like browsers.
- API Key
- Cookie
- AuthSession
IAM
Valid only for Cloud Identity and Access Management authentication.
Authenticates with a Authorization: Bearer {access_token}
header where access_token
is
calculated from an appropriate IAM configuration (for example from
an IAM API key, or IAM profile ID).
This process is handled automatically by IBM Cloudant's SDKs.
- HTTP
- JWT
- Bearer
Authentication with external configuration
In this scenario, the configuration is defined with an external credentials file and an authenticator that is constructed by SDK's authenticator factory during client initialization. Using the external credentials file avoids hardcoded credentials within the application code.
The default name of the credentials file is ibm-credentials.env
. It is expected to be located in either the current directory or in the user's home directory. The path and name of the file can be controlled by using the IBM_CREDENTIALS_FILE
environment variable.
Cloudant configuration properties start with a chosen
service name prefix that identifies your service.
By default it is CLOUDANT
.
If you would like to rename your Cloudant service from CLOUDANT
, or
use multiple services at the same time you must use your defined
service name as the prefix for all of your Cloudant related configuration properties.
You also must use the same service name at instantiating your service.
This way each configuration property contains the service name along with
the actual attribute name in the form <service-name>_<attribute-name>
(for example CLOUDANT_APIKEY
).
It is not necessary to use a .env file. These properties can be set by using environment variables with the same name in the environment where the application is run.
Variable guide for the authentication code samples
Attribute name | Description |
---|---|
{apikey} |
IAM API key |
{username} |
Cloudant username |
{password} |
Cloudant password |
{url} |
URL of Cloudant instance |
{service-name} |
Chosen service name of your Cloudant instance. Same as the prefix of your configuration properties. Default value is CLOUDANT . |
SDK managing the IAM token. Replace {apikey} and {url}.
{service-name}_URL={url}
{service-name}_APIKEY={apikey}
import com.ibm.cloud.cloudant.v1.Cloudant;
Cloudant service = Cloudant.newInstance("{service-name}");
import { CloudantV1 } from '@ibm-cloud/cloudant';
const service = CloudantV1.newInstance({
serviceName: '{service-name}'
});
from ibmcloudant.cloudant_v1 import CloudantV1
service = CloudantV1.new_instance(service_name="{service-name}")
import (
"github.com/IBM/cloudant-go-sdk/cloudantv1"
)
service, err := cloudantv1.NewCloudantV1UsingExternalConfig(
&cloudantv1.CloudantV1Options{
ServiceName: "{service-name}",
},
)
SDK managing session cookie.
{service-name}_AUTH_TYPE=COUCHDB_SESSION
{service-name}_URL={url}
{service-name}_USERNAME={username}
{service-name}_PASSWORD={password}
import com.ibm.cloud.cloudant.v1.Cloudant;
Cloudant service = Cloudant.newInstance("{service-name}");
import { CloudantV1 } from '@ibm-cloud/cloudant';
const service = CloudantV1.newInstance({
serviceName: '{service-name}'
});
from ibmcloudant.cloudant_v1 import CloudantV1
service = CloudantV1.new_instance(service_name="{service-name}")
import (
"github.com/IBM/cloudant-go-sdk/cloudantv1"
)
service, err := cloudantv1.NewCloudantV1UsingExternalConfig(
&cloudantv1.CloudantV1Options{
ServiceName: "{service-name}",
},
)
Basic authentication.
{service-name}_AUTH_TYPE=BASIC
{service-name}_URL={url}
{service-name}_USERNAME={username}
{service-name}_PASSWORD={password}
import com.ibm.cloud.cloudant.v1.Cloudant;
Cloudant service = Cloudant.newInstance("{service-name}");
import { CloudantV1 } from '@ibm-cloud/cloudant';
const service = CloudantV1.newInstance({
serviceName: '{service-name}'
});
from ibmcloudant.cloudant_v1 import CloudantV1
service = CloudantV1.new_instance(service_name="{service-name}")
import (
"github.com/IBM/cloudant-go-sdk/cloudantv1"
)
service, err := cloudantv1.NewCloudantV1UsingExternalConfig(
&cloudantv1.CloudantV1Options{
ServiceName: "{service-name}",
},
)
Programmatic authentication
In this scenario, authentication is configured by constructing an authenticator instance, supplying the configuration attributes programmatically, and then passing this instance to a client constructor.
If you are using the IBM Cloud App Service, IBM Cloud® Continuous Delivery or IBM Cloud starter kits then you can programmatically configure your SDK using the IBMCloudEnv
tool to obtain the configuration information from bound services. The IBMCloudEnv
tool is available for Go, Java&trade (Spring), Node.js, and Python.
SDK managing the IAM token.
import com.ibm.cloud.cloudant.v1.Cloudant;
import com.ibm.cloud.sdk.core.security.IamAuthenticator;
IamAuthenticator authenticator = new IamAuthenticator.Builder()
.apikey("{apikey}")
.build();
Cloudant service = new Cloudant(Cloudant.DEFAULT_SERVICE_NAME, authenticator);
service.setServiceUrl("{url}");
import { CloudantV1 } from '@ibm-cloud/cloudant';
import { IamAuthenticator } from 'ibm-cloud-sdk-core';
const authenticator = new IamAuthenticator({
apikey: '{apikey}'
});
const service = new CloudantV1({
authenticator: authenticator
});
service.setServiceUrl('{url}');
from ibmcloudant.cloudant_v1 import CloudantV1
from ibm_cloud_sdk_core.authenticators import IAMAuthenticator
authenticator = IAMAuthenticator('{apikey}')
service = CloudantV1(authenticator=authenticator)
service.set_service_url('{url}')
import (
"github.com/IBM/cloudant-go-sdk/cloudantv1"
"github.com/IBM/go-sdk-core/core"
)
authenticator := &core.IamAuthenticator{
ApiKey: "{apikey}",
}
service, err := cloudantv1.NewCloudantV1(
&cloudantv1.CloudantV1Options{
URL: "{url}",
Authenticator: authenticator,
},
)
if err != nil {
panic(err)
}
SDK managing session cookie.
import com.ibm.cloud.cloudant.v1.Cloudant;
import com.ibm.cloud.sdk.core.security.Authenticator;
import com.ibm.cloud.cloudant.security.CouchDbSessionAuthenticator;
Authenticator authenticator = CouchDbSessionAuthenticator.newAuthenticator("{username}", "{password}");
Cloudant service = new Cloudant(Cloudant.DEFAULT_SERVICE_NAME, authenticator);
service.setServiceUrl("{url}");
import { CloudantV1, CouchdbSessionAuthenticator } from '@ibm-cloud/cloudant';
const authenticator = new CouchdbSessionAuthenticator({
username: '{username}',
password: '{password}'
});
const service = new CloudantV1({
authenticator: authenticator
});
service.setServiceUrl('{url}');
from ibmcloudant.cloudant_v1 import CloudantV1
from ibmcloudant import CouchDbSessionAuthenticator
authenticator = CouchDbSessionAuthenticator('{username}', '{password}')
service = CloudantV1(authenticator=authenticator)
service.set_service_url('{url}')
import (
"github.com/IBM/cloudant-go-sdk/cloudantv1"
"github.com/IBM/cloudant-go-sdk/auth"
)
authenticator, err := auth.NewCouchDbSessionAuthenticator(
"{username}",
"{password}",
)
if err != nil {
panic(err)
}
service, err := cloudantv1.NewCloudantV1(
&cloudantv1.CloudantV1Options{
URL: "{url}",
Authenticator: authenticator,
},
)
if err != nil {
panic(err)
}
Basic authentication.
import com.ibm.cloud.cloudant.v1.Cloudant;
import com.ibm.cloud.sdk.core.security.BasicAuthenticator;
BasicAuthenticator authenticator = new BasicAuthenticator.Builder()
.username("{username}")
.password("{password}")
.build();
Cloudant service = new Cloudant(Cloudant.DEFAULT_SERVICE_NAME, authenticator);
service.setServiceUrl("{url}");
import { CloudantV1 } from '@ibm-cloud/cloudant';
import { BasicAuthenticator } from 'ibm-cloud-sdk-core';
const authenticator = new BasicAuthenticator({
username: '{username}',
password: '{password}'
});
const service = new CloudantV1({
authenticator: authenticator
});
service.setServiceUrl('{url}');
from ibmcloudant.cloudant_v1 import CloudantV1
from ibm_cloud_sdk_core.authenticators import BasicAuthenticator
authenticator = BasicAuthenticator('{username}', '{password}')
service = CloudantV1(authenticator=authenticator)
service.set_service_url('{url}')
import (
"github.com/IBM/cloudant-go-sdk/cloudantv1"
"github.com/IBM/go-sdk-core/core"
)
authenticator, err := core.NewBasicAuthenticator(
"{username}",
"{password}",
)
if err != nil {
panic(err)
}
service, err := cloudantv1.NewCloudantV1(
&cloudantv1.CloudantV1Options{
URL: "{url}",
Authenticator: authenticator,
},
)
if err != nil {
panic(err)
}
Error handling
IBM Cloudant operation uses standard HTTP response codes to indicate the status of the requested method. HTTP response codes in the 2xx range indicate success. A 4xx range indicates a failure, and a 5xx range usually indicates an internal system error. More detailed information can be found in the body of the response.
List of HTTP codes
HTTP Code | Meaning |
---|---|
200 - OK |
Request completed successfully. |
201 - Created |
Resource that is created or updated successfully. The resource could be a database or a document, for example. |
202 - Accepted |
Request was accepted, but the quorum for the operation was not met. |
206 - Partial Content |
Request was successful and the body contains the ranges of data, as described in the Range header of the request. |
304 - Not Modified |
The content that is requested was not modified. This error is used with the ETag system to identify the version of information returned. |
400 - Bad Request |
Bad request structure. The error can indicate an error with the request URL, path, or headers. Differences in the supplied MD5 hash and content also trigger this error, as this error might indicate message corruption. |
401 - Unauthorized |
The item requested was not available with the supplied authorization, or authorization was not supplied. |
402 - Payment required |
Either the data quota on the Lite plan was exceeded, or the account is in arrears. You can delete data or upgrade to the Standard plan, or bring the account up to date. |
403 - Forbidden |
The requested item or operation is forbidden. |
404 - Not Found |
The requested resource could not be found. The content includes further information as a JSON object, if available. The structure contains two keys, error and reason , similar to the following example: { "error":"not_found", "reason":"no_db_file" } |
405 - Resource Not Allowed |
A request was made by using an invalid HTTP request type for the URL requested. For example, you requested a PUT when a POST is expected. Errors of this type can also be triggered by invalid URL strings. |
406 - Not Acceptable |
The requested content type is not supported by the server. |
408 - Request Timeout |
Timeout during reading client request. |
410 - Gone |
The requested resource is no longer available. |
409 - Conflict |
Request resulted in an update conflict. The two most common causes are: 1. Trying to update or delete a document without providing a revision. 2. The latest revision of the document on the server changed in between a fetch and an update. |
412 - Precondition Failed |
The request headers from the client and the capabilities of the server do not match. Alternatively, a request to create a database was denied because the database exists. |
413 - Request Entity Too Large |
The request size exceeded the limit for the IBM Cloudant API. |
415 - Bad Content Type |
The content types supported and the content type of the information that was requested or submitted. The error indicates that the content type is not supported. |
416 - Requested Range Not Satisfiable |
The range that is specified in the request header cannot be satisfied by the server. |
429 - Too Many Requests |
The user sent too many requests in a specific amount of time. More information is available in the corresponding RFC 6585. |
500 - Internal Server Error |
The request could not be completed by the server. It could be due to an internal error or in some cases invalid data in the request. Alternatively, a replication was canceled while in progress. |
502 - Bad Gateway |
The server while acting as a gateway or proxy, received an invalid response from the upstream server. |
503 - Service Unavailable |
The request could not be processed. Seeing this response might indicate a misspelled IBM Cloudant account name. |
504 - Gateway Timeout |
Timeout when the server is acting as a gateway and cannot get a response in time. |
Error response
Name | Description |
---|---|
error string |
the error message returned in the response |
reason string |
a more detailed description about the cause of the failure |
caused_by (optional) string |
the cause of the error |
Error Responses specific to /_api/v2/
endpoints
Name | Description |
---|---|
code integer |
HTTP error code |
error string |
a more detailed description about the cause of the failure |
Name | Description |
---|---|
message string |
detailed description about the cause of the failure |
Error Response
{
"error":"bad_request",
"reason":"invalid UTF-8 JSON"
}
Error Responses specific to /_api/v2/
endpoints
{
"code": 404,
"error": "Could not find Cloudant user"
}
{
"message": "The method is not allowed for the requested URL."
}
Code example
If an error response is received from the server endpoint, the Go SDK will create an error
object that contains either the HTTP response error message or a generic error message.
An additional detailedResponse
will be returned by the service
that will contain the following fields:
Field | Description |
---|---|
StatusCode | HTTP response status code |
Result | JSON error response object unmarshalled as map[string]interface{} |
RawResult | raw non-JSON error response object as []byte |
Example error handling
_, detailedResponse, err := // Invoke a Cloudant method request
if err != nil {
if (detailedResponse != nil) {
fmt.Println("Error status code: ", detailedResponse.StatusCode)
fmt.Println("Error message: ", err.Error())
errorMap, ok := detailedResponse.GetResultAsMap(); if ok {
fmt.Println("Reason: ", errorMap["reason"])
}
} else {
// Handle other error conditions
fmt.Println("Error message: ", err.Error())
}
}
Code example
If an error response is received from the server endpoint, the Java&trade SDK will throw
an exception from the com.ibm.cloud.sdk.core.service.exception
package.
The base class for all exception classes is ServiceResponseException
- that derives
from RuntimeException
- to handle any error response from the server.
Here is a list about predefined exceptions and
their corresponding statusCode
and message
content.
Exception | Status Code and default error message |
---|---|
ServiceResponseException | Base class for all exceptions |
BadRequestException | 400 Bad Request |
UnauthorizedException | 401 Unauthorized |
ForbiddenException | 403 Forbidden |
NotFoundException | 404 Not found |
ConflictException | 409 Conflict |
UnsupportedException | 415 Unsupported media type |
InternalServerErrorException | 500 Internal server error |
IllegalArgumentException | An invalid argument was passed to the method. |
All service exceptions contain the following fields:
Field | Description |
---|---|
statusCode | HTTP response status code |
message | the error message returned in the response |
debuggingInfo | a Map<String, Object> which contains the unmarshalled error response object if a JSON error response is returned.This will provide more information beyond the error message. |
Example error handling
import com.ibm.cloud.sdk.core.service.exception.BadRequestException;
import com.ibm.cloud.sdk.core.service.exception.NotFoundException;
import com.ibm.cloud.sdk.core.service.exception.ServiceResponseException;
import com.ibm.cloud.sdk.core.service.exception.UnauthorizedException;
import com.ibm.cloud.sdk.core.service.exception.IllegalArgumentException;
try {
// Invoke a Cloudant method request
} catch (BadRequestException e) {
// Handle Bad Request (400) exception
} catch (UnauthorizedException e) {
// Handle Unauthorized (401) exception
} catch (NotFoundException e) {
// Handle Not Found (404) exception
} catch (ServiceResponseException se) {
System.out.println("Service returned status code "
+ se.getStatusCode() + ": " + se.getMessage());
System.out.println("Detailed error info: " + se.getDebuggingInfo().getOrDefault("reason", "")););
} catch (RuntimeException re) {
// Handle other error conditions
System.out.println("Unexpected Exception:\n" + re.getMessage());
} catch (IllegalArgumentException iae) {
// Handle invalid argument value
System.out.println("Invalid argument value:\n" + iae.getMessage());
}
Code example
If an error response is received from the server endpoint, the Node SDK will create
an Error
object that contains either the HTTP response error message or a generic error message.
In case of network problems the axios
package will generate an Error
object.
This Error
object is passed as the first parameter to the callback function,
its failure describing content is as shown in the following table.
Field | Description |
---|---|
status | HTTP response status code |
statusText | a text description of the status code |
message | generic error message |
result | error JSON response body as an object |
Example error handling
service.CloudantMethod(params)
.then((response) => {
// ...handle successful response...
})
.catch(error => {
if (error.code !== undefined && error.code === "ERR_INVALID_ARG_VALUE") {
// The request was not sent, so there is no error status code, text and body
console.log("Invalid argument value: \n" + error.message);
} else {
console.log(`Error status code: ${error.status}`);
console.log(`Error status text: ${error.statusText}`);
console.log(`Error message: ${error.message}`);
console.log(`Cloudant error: ${error.result.error}`);
console.log(`Cloudant error reason: ${error.result.reason}`);
}
});
Code example
If an error response is received from the server endpoint, the Python SDK
will throw an ApiException
that includes more information about the cause
of the failure. It provides the following details:
Field | Description |
---|---|
status_code | HTTP response status code |
message | the error message returned in the response |
reason | a more detailed description about the cause of the failure |
Example error handling
from ibm_cloud_sdk_core import ApiException
try:
# Invoke a Cloudant method request
except ApiException as ae:
print("Method failed")
print(" - status code: " + str(ae.status_code))
print(" - error message: " + ae.message)
if ("reason" in ae.http_response.json()):
print(" - reason: " + ae.http_response.json()["reason"])
Other errors
HTTP API requests may also not complete successfully due to error conditions in the network. This condition will cause IBM Cloudant request to fail.
An example would be an HTTP request timeout. In this case the request returns detailedResponse
with only
StatusCode
- Result
and RawResult
elements will be nil
.
Argument validation prevents invalid values and stops the request from being sent.
This results in Result
and RawResult
objects being nil
, and a returned
error message with no status code or reason.
In all other cases, detailedResponse
will be nil
because it is returned only by
IBM Cloudant Service.
In this case, an IOException
will be thrown and will be wrapped in a RuntimeException
.
Argument validation prevents invalid values and stops the request from being sent.
Invalid argument values raise an IllegalArgumentException
exception.
In this case, the status
will be undefined
and body
content will
be non-JSON formatted error description.
Argument validation prevents invalid values and stops the request from being sent.
Invalid argument values raise an Error
object containing a code
field with
the value ERR_INVALID_ARG_VALUE
.
In this case, the requests
package will raise specific exceptions for these problems.
Argument validation prevents invalid values and stops the request from being sent.
Invalid argument values raise an ValueError
exception.
from requests import ConnectionError, ReadTimeout, RequestException, ValueError
try:
# Invoke a Cloudant method request
except ConnectionError as cerr:
print("Connection error occurred:")
print(cerr)
except ReadTimeout as rt:
# The server did not send any data in the allotted amount of time.
print("Read timed out:")
print(rt)
except RequestException as re:
# Handle other request failures
print("Request Exception:")
print(re)
except ValueError as ve:
print("Invalid argument value:\n" + ve.message)
Auditing
You can monitor API activity within your account by using the IBM Cloud® Activity Tracker service. An event is generated for most of the API endpoints when they are called, and you can then track and audit from within Activity Tracker. The specific event type is listed for each individual method. For methods that don't list any events, no events are generated.
For more information about how to track IBM Cloudant activity, see Audit logging.
Additional headers
Because IBM Cloudant uses HTTP for all external communication, you need to ensure that the correct HTTP request headers are supplied and processed on retrieval. This course of action ensures that you get the correct format and encoding. Different environments and clients are more or less strict on the effect of these HTTP headers, especially when they are not present. To reduce the likelihood of problems or unexpected behavior, you must be as specific as possible.
Request headers
The supported HTTP request headers are shown in the following list:
Accept
Content-Type
Content-Encoding
If-None-Match
Range
Accept
The Accept
header specifies the list of potential data types that are returned by the server that would be
accepted and understood by the client.
The format is a list of one or more MIME types,
which are separated by colons.
For the most requests,
the accepted list must include JSON data (application/json
).
For attachments,
you can either specify the MIME type explicitly,
or use */*
to specify that all file types are supported.
If the Accept
header is not supplied,
then the server assumes the */*
MIME type,
which means that the client accepts all formats.
See the following example of sending a request without an explicit Accept
header, or when you specify */*
:
GET /recipes HTTP/1.1
Host: username.cloudant.com
Accept: */*
See the following example of a returned header when the client is assumed to accept all formats:
The returned content type is text/plain
even though the information that is returned by the request is in JSON format.
Server: CouchDB/1.0.2 (Erlang OTP/R14B)
Date: Thu, 13 Jan 2011 13:39:34 GMT
Content-Type: text/plain;charset=utf-8
Content-Length: #7
Cache-Control: must-revalidate
The use of Accept
in queries to IBM Cloudant is not required,
but is highly recommended as it helps to ensure that the data returned can be processed by the client.
If you specify a data type that uses the Accept
header,
IBM Cloudant honors the specified type in the Content-type
header field of responses.
For example,
if you explicitly request application/json
in the Accept
of a request,
the returned HTTP headers use this value in the returned Content-type
field.
See the following example request that explicitly specifies the Accept
header:
GET /recipes HTTP/1.1
Host: username.cloudant.com
Accept: application/json
See the following example of the headers returned in response, including the application/json
content type:
Server: CouchDB/1.0.2 (Erlang OTP/R14B)
Date: Thu, 13 Jan 2011 13:40:11 GMT
Content-Type: application/json
Content-Length: #7
Cache-Control: must-revalidate
Content-Type for request headers
The Content-Type
header specifies the content type of the information that is supplied within the request.
The specification uses MIME type specifications.
For most requests,
the content type is JSON (application/json
).
For some settings, the MIME type is plain text.
In particular,
when you upload attachments the type must be the corresponding
MIME type for the attachment or binary (application/octet-stream
).
The use of the Content-Type
on a request is highly recommended.
Content-Encoding
The Content-Encoding
header specifies the encoding of the request body.
The supported value is gzip
.
If the header is used,
the request body must be encoded with the corresponding format.
See the following example of creating a compressed (gzipped
) request body:
# create gzipped document
echo '{"foo":"bar"}' | gzip > doc.gzip
See the following example of sending a gzip-encoded request body to create a document by using HTTP:
PUT /db/doc HTTP/1.1
HOST: $ACCOUNT.cloudant.com
Content-Encoding: gzip
See the following example of sending a gzip-encoded request body to create a document by using the command line:
curl "https://$ACCOUNT.cloudant.com/db/doc" \
-X PUT \
-T doc.gzip \
-H "Content-Encoding: gzip"
Range
The Range
header specifies the parts of an attachment that the server should return. Several parts can be requested at the same time in one Range
header, and the server may send back these ranges in a multipart document. If the server sends back ranges, it uses the status line 206 Partial Content
for the response.
If-None-Match
The If-None-Match
header is optional.
You might send it to determine whether a document was modified since it was last read or updated.
The value of the If-None-Match
header must match the last Etag
value received.
If the value matches the current revision of the document,
the server sends a 304 Not Modified
status code,
and the response itself has no body.
If the document was modified,
you get a normal 200
response,
provided the document still exists and no other errors occurred.
Response headers
Response headers are returned by the server when you send back content. They include a number of different fields. Many of the fields are standard HTTP response headers and have no significance regarding how IBM Cloudant operates. The supported HTTP response headers that are important to IBM Cloudant are as shown in the following list.
Cache-Control
Content-Length
Content-Range
Content-Type
Etag
Via
X-Content-Type-Options
X-Couch-Request-ID
X-Cloudant-Action
X-Cloudant-Backend
X-Cloudant-Request-Class
X-Frame-Options
The IBM Cloudant design document API and its functions return HTML (for example as part of a show or list). After which, you can include custom HTTP headers through the headers
field of the return object.
Cache-Control
The Cache-Control
HTTP response header provides a suggestion for the client cache mechanisms
on how to treat the returned information.
IBM Cloudant typically returns the must-revalidate
value,
which indicates that the information must be revalidated if possible.
Revalidation ensures that the dynamic nature of the content is correctly updated.
Content-Length
The Content-Length
header reports the length in bytes of the returned content.
Content-Type for response headers
The Content-Type
header specifies the MIME type of the returned data.
For most request,
the returned MIME type is text/plain
.
All text is encoded in Unicode (UTF-8),
which is explicitly stated in the returned Content-Type
as text/plain;charset=utf-8
.
Content-Range
The Content-Range
header specifies where in the full document's attachment a partial content belongs.
The value is in the form of bytes <range>/<total content length>
.
The Range
request header is required to specify the partial content to be returned.
Etag
The Etag
header is used to show the revision for a document,
or the response from a show function.
For documents,
the value is identical to the revision of the document.
The value can be used with an If-None-Match
request header
to get a 304 Not Modified
response if the revision is still current.
ETags cannot currently be used with views or lists, since the ETags returned from those requests are random numbers that change on every request.
Via
A name of an individual reverse proxy server that processed the request.
X-Content-Type-Options
The X-Content-Type-Options
response HTTP header is a marker
used by the server to indicate that the MIME types advertised
in the Content-Type
headers should be followed and not be changed.
This is a security feature to block content sniffing that could transform
non-executable MIME types into executable MIME types.
By default Cloudant returns X-Content-Type-Options: nosniff
that blocks
a request if the request destination is of type style and the MIME type
is not text/css
, or of type script and the MIME type is not
a JavaScript MIME type.
X-Couch-Request-ID
A unique identifier for the request.
X-Cloudant-Action
An auditing event's action name generated for the request.
X-Cloudant-Backend
A name of an individual backend server that processed the request.
X-Cloudant-Request-Class
A request class assigned to the request that count towards the instance's throughput capacity's budget.
X-Frame-Options
The X-Frame-Options
is a response header that controls whether
an HTTP response can be embedded in a <frame>
, <iframe>
or <object>
.
This is a security feature to help against clickjacking.
Cloudant returns X-Frame-Options: DENY
by default.
Paging on all documents and on views
The following endpoints have the limit
and skip
parameters which allow you to define how many documents you would
like to see on a page, and the offset into the range you want to start the page from, but this pattern gets
progressively slower the larger the value of skip
gets.
There are a couple of options which are more efficient than using the limit
/skip
pattern:
either fetch one extra document, and use this document's id
as the startKey
of your request for the next page of results ("fetch one document too many"); or append \u0000
to the startKey
, using the last id
of the last document from your previous page of results ("the \u0000
trick").
The following endpoints have the Limit
and Skip
parameters which allow you to define how many documents you would
like to see on a page, and the offset into the range you want to start the page from, but this pattern gets
progressively slower the larger the value of Skip
gets.
There are a couple of options which are more efficient than using the Limit
/Skip
pattern:
either fetch one extra document, and use this document's ID
as the StartKey
of your request for the next page of results ("fetch one document too many"); or append \u0000
to the StartKey
, using the last ID
of the last document from your previous page of results ("the \u0000
trick").
- GET /{db}/_all_docs
- POST /{db}/_all_docs
- GET /{db}/_partition/{partition_key}/_all_docs
- POST /{db}/_partition/{partition_key}/_all_docs
- GET /{db}/_design/{ddoc}/_view/{view}
- POST /{db}/_design/{ddoc}/_view/{view}
- GET /{db}/_partition/{partition_key}/_design/{ddoc}/_view/{view}
- POST /{db}/_partition/{partition_key}/_design/{ddoc}/_view/{view}
You can find examples and more explanation for both tricks in the Cloudant docs:
We recommend to use "the \u0000 trick" over "fetch one document too many".
Paging with bookmarks
The following endpoints use bookmarks as the key to access the next page of results from the result set. If you want to learn about the usage of bookmarks we recommend reading how IBM Cloudant bookmarks work.
Rate limiting
Rate limits for API requests are enforced on a per-service-instance basis. If the number of requests for a particular request class (read
, write
or global query
) reaches the limit within the given time window, no further requests of that class are accepted until the next time window.
You can view your usage by using the Retrieve the current provisioned throughput capacity consumption API or the IBM Cloudant dashboard. IBM Cloudant does return an x-cloudant-request-class
response header related to limiting.
x-cloudant-request-class
response header returns the following request classes: read
, write
, global query
, or unlimited
.
If you want to learn more about these request classes, see the Request classes documentation.
A 429
HTTP status code indicates that the rate limit has been exceeded.
The number of allowed requests varies by request class. The reference information for each endpoint and method specifies the request class that applies to the request. The rate limit for each request class is determined by the account plan.
Related APIs
Most requests and responses to and from IBM® Cloudant® for IBM Cloud® use JavaScript Object Notation (JSON) for formatting the content and structure of the data and responses.
In IBM Cloudant databases, the JSON object is used to represent various structures, including all documents in a database.
Parsing JSON into a JavaScript object is supported through the JSON.parse()
function in JavaScript, or through various libraries that perform the parsing of the content into a JavaScript object for you. Libraries for parsing and generating JSON are available for many major programming languages.
JSON is used because it's the simplest and easiest solution for working with data that uses a web browser. As a result, JSON structures can be evaluated and used as JavaScript objects within the web browser environment. JSON also integrates with the server-side JavaScript used within IBM Cloudant. JSON documents are always UTF-8 encoded.
Be careful to follow these guidelines:
- Your JSON structures are valid.
- You normalize strings in JSON documents retrieved from IBM Cloudant.
JSON supports the same basic types that are supported by JavaScript: numbers, strings, Booleans, arrays, and objects.
Objects
A set of key-value
pairs,
such as an associative array,
or a hash.
The key must be a string,
but the value can be any of the supported JSON values.
Example of a JSON object
{
"servings" : 4,
"subtitle" : "Easy to make in advance, and then cook when ready",
"cooktime" : 60,
"title" : "Chicken Coriander"
}
Logging
A basic logging facility is provided by the Go core library with levels Error, Info, Warn, and Debug. If Debug level is enabled, it displays HTTP request and response messages and retry attempts.
The Go core library also defines a Logger
interface, where you can supply your own logging implementation. For example, you can direct the log messages to a file instead of the console.
The logging detail level can be configured by using the HttpConfigOptions
class.
The SDK is using debug package for logging. In order to see the log output, set the environment variable DEBUG
including the wanted log level.
To enable logging, import the logging package and then setting the log level to DEBUG.
// Enable Debug logging
core.SetLoggingLevel(core.LevelDebug)
HttpConfigOptions options =
new HttpConfigOptions.Builder()
.loggingLevel(HttpConfigOptions.LoggingLevel.BASIC)
.build();
service.configureClient(options);
DEBUG=ibm-cloud-sdk-core:error // enables error logs
DEBUG=ibm-cloud-sdk-core:warning // enables warning logs and below
DEBUG=ibm-cloud-sdk-core:info // enables info logs and below
DEBUG=ibm-cloud-sdk-core:verbose // enables verbose logs and below
DEBUG=ibm-cloud-sdk-core:debug // enables debug logs and below
import logging
logging.basicConfig(level=logging.DEBUG)
Methods
Retrieve server instance information
When you access the root of an instance, IBM Cloudant returns meta-information about the instance. The response includes a JSON structure that contains information about the server, including a welcome message and the server's version.
Tip: The authentication for this endpoint is only enforced when using IAM.
When you access the root of an instance, IBM Cloudant returns meta-information about the instance. The response includes a JSON structure that contains information about the server, including a welcome message and the server's version.
Tip: The authentication for this endpoint is only enforced when using IAM.
When you access the root of an instance, IBM Cloudant returns meta-information about the instance. The response includes a JSON structure that contains information about the server, including a welcome message and the server's version.
Tip: The authentication for this endpoint is only enforced when using IAM.
When you access the root of an instance, IBM Cloudant returns meta-information about the instance. The response includes a JSON structure that contains information about the server, including a welcome message and the server's version.
Tip: The authentication for this endpoint is only enforced when using IAM.
When you access the root of an instance, IBM Cloudant returns meta-information about the instance. The response includes a JSON structure that contains information about the server, including a welcome message and the server's version.
Tip: The authentication for this endpoint is only enforced when using IAM.
GET /
(cloudant *CloudantV1) GetServerInformation(getServerInformationOptions *GetServerInformationOptions) (result *ServerInformation, response *core.DetailedResponse, err error)
(cloudant *CloudantV1) GetServerInformationWithContext(ctx context.Context, getServerInformationOptions *GetServerInformationOptions) (result *ServerInformation, response *core.DetailedResponse, err error)
ServiceCall<ServerInformation> getServerInformation()
getServerInformation(params)
get_server_information(
self,
**kwargs,
) -> DetailedResponse
Request
Custom Headers
Set a unique identifier to trace a request.
Possible values: length = 36, Value must match regular expression
^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-4[0-9a-fA-F]{3}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$
WithContext method only
A context.Context instance that you can use to specify a timeout for the operation or to cancel an in-flight request.
No Request Parameters
No Request Parameters
No Request Parameters
No Request Parameters
curl -H "Authorization: Bearer $API_BEARER_TOKEN" -X GET "$SERVICE_URL"
import ( "encoding/json" "fmt" "github.com/IBM/cloudant-go-sdk/cloudantv1" )
service, err := cloudantv1.NewCloudantV1( &cloudantv1.CloudantV1Options{}, ) if err != nil { panic(err) } getServerInformationOptions := service.NewGetServerInformationOptions() serverInformation, response, err := service.GetServerInformation(getServerInformationOptions) if err != nil { panic(err) } b, _ := json.MarshalIndent(serverInformation, "", " ") fmt.Println(string(b))
import com.ibm.cloud.cloudant.v1.Cloudant; import com.ibm.cloud.cloudant.v1.model.ServerInformation;
Cloudant service = Cloudant.newInstance(); ServerInformation response = service.getServerInformation().execute().getResult(); System.out.println(response);
import { CloudantV1 } from '@ibm-cloud/cloudant'; const service = CloudantV1.newInstance({}); service.getServerInformation().then(response => { console.log(response.result); });
from ibmcloudant.cloudant_v1 import CloudantV1 service = CloudantV1.new_instance() response = service.get_server_information().get_result() print(response)
Response
Schema for information about the server instance.
Welcome message.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
List of enabled optional features.
Possible values: 0 ≤ number of items ≤ 4294967295, 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
List of feature flags.
Possible values: 1 ≤ number of items ≤ 4294967295, 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Schema for server vendor information.
- vendor
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Apache CouchDB version.
Possible values: 5 ≤ length ≤ 7168, Value must match regular expression
^(?:0|[1-9]\d*)\.(?:0|[1-9]\d*)\.(?:0|[1-9]\d*)(?:-([0-9A-Za-z-]+(?:\.[0-9A-Za-z-]+)*))?(?:\+[0-9A-Za-z-]+)?$
Schema for information about the server instance.
Welcome message.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
List of enabled optional features.
Possible values: number of items ≥ 0, 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
List of feature flags.
Possible values: number of items ≥ 1, 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
Schema for server vendor information.
- Vendor
Vendor name.
Possible values: length = 12, Value must match regular expression
/^IBM Cloudant$/
Vendor variant.
Possible values: [
paas
]Vendor version.
Possible values: 1 ≤ length ≤ 9, Value must match regular expression
/^\\d+$/
Apache CouchDB version.
Possible values: 5 ≤ length ≤ 7168, Value must match regular expression
/^(?:0|[1-9]\\d*)\\.(?:0|[1-9]\\d*)\\.(?:0|[1-9]\\d*)(?:-([0-9A-Za-z-]+(?:\\.[0-9A-Za-z-]+)*))?(?:\\+[0-9A-Za-z-]+)?$/
Schema for information about the server instance.
Welcome message.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
List of enabled optional features.
Possible values: number of items ≥ 0, 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
List of feature flags.
Possible values: number of items ≥ 1, 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
Schema for server vendor information.
- vendor
Vendor name.
Possible values: length = 12, Value must match regular expression
/^IBM Cloudant$/
Vendor variant.
Possible values: [
paas
]Vendor version.
Possible values: 1 ≤ length ≤ 9, Value must match regular expression
/^\\d+$/
Apache CouchDB version.
Possible values: 5 ≤ length ≤ 7168, Value must match regular expression
/^(?:0|[1-9]\\d*)\\.(?:0|[1-9]\\d*)\\.(?:0|[1-9]\\d*)(?:-([0-9A-Za-z-]+(?:\\.[0-9A-Za-z-]+)*))?(?:\\+[0-9A-Za-z-]+)?$/
Schema for information about the server instance.
Welcome message.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
List of enabled optional features.
Possible values: number of items ≥ 0, 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
List of feature flags.
Possible values: number of items ≥ 1, 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
Schema for server vendor information.
- vendor
Vendor name.
Possible values: length = 12, Value must match regular expression
/^IBM Cloudant$/
Vendor variant.
Possible values: [
paas
]Vendor version.
Possible values: 1 ≤ length ≤ 9, Value must match regular expression
/^\\d+$/
Apache CouchDB version.
Possible values: 5 ≤ length ≤ 7168, Value must match regular expression
/^(?:0|[1-9]\\d*)\\.(?:0|[1-9]\\d*)\\.(?:0|[1-9]\\d*)(?:-([0-9A-Za-z-]+(?:\\.[0-9A-Za-z-]+)*))?(?:\\+[0-9A-Za-z-]+)?$/
Schema for information about the server instance.
Welcome message.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
List of enabled optional features.
Possible values: number of items ≥ 0, 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
List of feature flags.
Possible values: number of items ≥ 1, 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
Schema for server vendor information.
- vendor
Vendor name.
Possible values: length = 12, Value must match regular expression
/^IBM Cloudant$/
Vendor variant.
Possible values: [
paas
]Vendor version.
Possible values: 1 ≤ length ≤ 9, Value must match regular expression
/^\\d+$/
Apache CouchDB version.
Possible values: 5 ≤ length ≤ 7168, Value must match regular expression
/^(?:0|[1-9]\\d*)\\.(?:0|[1-9]\\d*)\\.(?:0|[1-9]\\d*)(?:-([0-9A-Za-z-]+(?:\\.[0-9A-Za-z-]+)*))?(?:\\+[0-9A-Za-z-]+)?$/
Status Code
HTTP response for
/
style operations.HTTP error for bad request.
HTTP error for unauthorized.
HTTP error for payment required.
HTTP error for forbidden.
HTTP error for not found.
HTTP error for timeout reading client request.
HTTP error for gone.
HTTP error for too many requests.
HTTP error for internal server error.
HTTP error for bad gateway.
HTTP error for service unavailable.
HTTP error for gateway timeout.
Example ServerInformation response.
{ "couchdb": "Welcome", "features": [ "access-ready", "iam", "partitioned", "pluggable-storage-engines", "scheduler" ], "features_flags": [ "partitioned" ], "vendor": { "name": "IBM Cloudant", "variant": "paas", "version": "8162" }, "version": "2.1.1" }
Example ServerInformation response.
{ "couchdb": "Welcome", "features": [ "access-ready", "iam", "partitioned", "pluggable-storage-engines", "scheduler" ], "features_flags": [ "partitioned" ], "vendor": { "name": "IBM Cloudant", "variant": "paas", "version": "8162" }, "version": "2.1.1" }
Example error response for a bad request.
{ "error": "bad_request", "reason": "Bad request." }
Example error response for a bad request.
{ "error": "bad_request", "reason": "Bad request." }
Example error response for reader access is required for this request.
{ "error": "unauthorized", "reason": "_reader access is required for this request." }
Example error response for reader access is required for this request.
{ "error": "unauthorized", "reason": "_reader access is required for this request." }
Example error response for incorrect credentials.
{ "error": "unauthorized", "reason": "Name or password is incorrect." }
Example error response for incorrect credentials.
{ "error": "unauthorized", "reason": "Name or password is incorrect." }
Example error response when payment is required. For example, if the data quota of the plan is exceeded.
{ "error": "payment_required", "reason": "Payment required" }
Example error response when payment is required. For example, if the data quota of the plan is exceeded.
{ "error": "payment_required", "reason": "Payment required" }
Example error response for a forbidden request.
{ "error": "forbidden", "reason": "server_admin access is required for this request" }
Example error response for a forbidden request.
{ "error": "forbidden", "reason": "server_admin access is required for this request" }
Example error response for an account temporarily locked out.
{ "error": "forbidden", "reason": "Account is temporarily locked due to multiple authentication failures" }
Example error response for an account temporarily locked out.
{ "error": "forbidden", "reason": "Account is temporarily locked due to multiple authentication failures" }
Example error response for a not found request.
{ "error": "not_found", "reason": "missing" }
Example error response for a not found request.
{ "error": "not_found", "reason": "missing" }
Example error response for timeout reading client request.
{ "error": "request_timeout", "reason": "Request timeout" }
Example error response for timeout reading client request.
{ "error": "request_timeout", "reason": "Request timeout" }
Example error response for gone.
{ "error": "gone", "reason": "The requested resource is no longer located here, verify your DNS settings." }
Example error response for gone.
{ "error": "gone", "reason": "The requested resource is no longer located here, verify your DNS settings." }
Example error response for too many requests.
{ "error": "too_many_requests", "reason": "You've exceeded your rate limit allowance. Please try again later." }
Example error response for too many requests.
{ "error": "too_many_requests", "reason": "You've exceeded your rate limit allowance. Please try again later." }
Example error response for an unknown server error.
{ "error": "unknown_error", "reason": "function_clause", "ref": 2632214382 }
Example error response for an unknown server error.
{ "error": "unknown_error", "reason": "function_clause", "ref": 2632214382 }
Example error response for bad gateway.
{ "error": "bad_gateway", "reason": "Bad gateway" }
Example error response for bad gateway.
{ "error": "bad_gateway", "reason": "Bad gateway" }
Example error response for service unavailable.
{ "error": "service_unavailable", "reason": "Service unavailable" }
Example error response for service unavailable.
{ "error": "service_unavailable", "reason": "Service unavailable" }
Example error response for gateway timeout.
{ "error": "gateway_timeout", "reason": "Gateway timeout" }
Example error response for gateway timeout.
{ "error": "gateway_timeout", "reason": "Gateway timeout" }
Retrieve the HTTP headers for a server instance
Retrieves the HTTP headers for a server instance.
HEAD /
Request
Custom Headers
Set a unique identifier to trace a request.
Possible values: length = 36, Value must match regular expression
^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-4[0-9a-fA-F]{3}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$
Response
Response Headers
Header for returning the compression codec used if an attachment's content_type is in list of compressible types.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Header returning the attachment size. If a compression codec is used, this value is the compressed size.
Possible values: 0 ≤ value ≤ 10485760
Header returning the server response date-time.
Possible values: 28 ≤ length ≤ 31, Value must match regular expression
^(Mon|Tue|Wed|Thu|Fri|Sat|Sun), [0-3]\d (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) \d{4} [0-2]\d:[0-5]\d:[0-6]\d ([+-]\d{4}|[A-Z]{2,3})$
Header returning the server information.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Header added by proxies through which the response was sent.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Header returning the Cloudant IAM action of the request.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^cloudantnosqldb\..+$
Header returning the Cloudant backend that handled the request.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Header returning the Cloudant class of the request.
Possible values: [
lookup
,query
,unlimited
,write
]Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Status Code
HTTP response for
/
style operations.HTTP error for bad request.
HTTP error for unauthorized.
HTTP error for payment required.
HTTP error for forbidden.
HTTP error for not found.
HTTP error for timeout reading client request.
HTTP error for gone.
HTTP error for too many requests.
HTTP error for internal server error.
HTTP error for bad gateway.
HTTP error for service unavailable.
HTTP error for gateway timeout.
Retrieve provisioned throughput capacity information
View the amount of provisioned throughput capacity that is allocated to an IBM Cloudant instance and what is the target provisioned throughput capacity.
View the amount of provisioned throughput capacity that is allocated to an IBM Cloudant instance and what is the target provisioned throughput capacity.
View the amount of provisioned throughput capacity that is allocated to an IBM Cloudant instance and what is the target provisioned throughput capacity.
View the amount of provisioned throughput capacity that is allocated to an IBM Cloudant instance and what is the target provisioned throughput capacity.
View the amount of provisioned throughput capacity that is allocated to an IBM Cloudant instance and what is the target provisioned throughput capacity.
GET /_api/v2/user/capacity/throughput
(cloudant *CloudantV1) GetCapacityThroughputInformation(getCapacityThroughputInformationOptions *GetCapacityThroughputInformationOptions) (result *CapacityThroughputInformation, response *core.DetailedResponse, err error)
(cloudant *CloudantV1) GetCapacityThroughputInformationWithContext(ctx context.Context, getCapacityThroughputInformationOptions *GetCapacityThroughputInformationOptions) (result *CapacityThroughputInformation, response *core.DetailedResponse, err error)
ServiceCall<CapacityThroughputInformation> getCapacityThroughputInformation()
getCapacityThroughputInformation(params)
get_capacity_throughput_information(
self,
**kwargs,
) -> DetailedResponse
Request
Custom Headers
Set a unique identifier to trace a request.
Possible values: length = 36, Value must match regular expression
^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-4[0-9a-fA-F]{3}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$
WithContext method only
A context.Context instance that you can use to specify a timeout for the operation or to cancel an in-flight request.
No Request Parameters
No Request Parameters
No Request Parameters
No Request Parameters
ibmcloud cloudant capacity
curl -H "Authorization: Bearer $API_BEARER_TOKEN" "$SERVICE_URL/_api/v2/user/capacity/throughput"
import ( "encoding/json" "fmt" "github.com/IBM/cloudant-go-sdk/cloudantv1" )
service, err := cloudantv1.NewCloudantV1( &cloudantv1.CloudantV1Options{}, ) if err != nil { panic(err) } getCapacityThroughputInformationOptions := service.NewGetCapacityThroughputInformationOptions() capacityThroughputInformation, response, err := service.GetCapacityThroughputInformation(getCapacityThroughputInformationOptions) if err != nil { panic(err) } b, _ := json.MarshalIndent(capacityThroughputInformation, "", " ") fmt.Println(string(b))
import com.ibm.cloud.cloudant.v1.Cloudant; import com.ibm.cloud.cloudant.v1.model.CapacityThroughputInformation;
Cloudant service = Cloudant.newInstance(); CapacityThroughputInformation response = service.getCapacityThroughputInformation().execute().getResult(); System.out.println(response);
import { CloudantV1 } from '@ibm-cloud/cloudant'; const service = CloudantV1.newInstance({}); service.getCapacityThroughputInformation().then(response => { console.log(response.result); });
from ibmcloudant.cloudant_v1 import CloudantV1 service = CloudantV1.new_instance() response = service.get_capacity_throughput_information().get_result() print(response)
Response
Schema for information about the currently provisioned and target throughput capacity.
Detailed information about provisioned throughput capacity.
Detailed information about target throughput capacity.
Schema for information about the currently provisioned and target throughput capacity.
Detailed information about provisioned throughput capacity.
- Current
Schema for detailed information about throughput capacity with breakdown by specific throughput requests classes.
- Throughput
A number of blocks of throughput units. A block consists of 100 reads/sec, 50 writes/sec, and 5 global queries/sec of provisioned throughput capacity. Not available for some plans.
Possible values: 1 ≤ value ≤ 100
Provisioned global queries capacity in operations per second.
Possible values: 0 ≤ value ≤ 2500
Provisioned reads capacity in operations per second.
Possible values: 0 ≤ value ≤ 50000
Provisioned writes capacity in operations per second.
Possible values: 0 ≤ value ≤ 25000
Detailed information about target throughput capacity.
- Target
Schema for detailed information about throughput capacity with breakdown by specific throughput requests classes.
- Throughput
A number of blocks of throughput units. A block consists of 100 reads/sec, 50 writes/sec, and 5 global queries/sec of provisioned throughput capacity. Not available for some plans.
Possible values: 1 ≤ value ≤ 100
Provisioned global queries capacity in operations per second.
Possible values: 0 ≤ value ≤ 2500
Provisioned reads capacity in operations per second.
Possible values: 0 ≤ value ≤ 50000
Provisioned writes capacity in operations per second.
Possible values: 0 ≤ value ≤ 25000
Schema for information about the currently provisioned and target throughput capacity.
Detailed information about provisioned throughput capacity.
- current
Schema for detailed information about throughput capacity with breakdown by specific throughput requests classes.
- throughput
A number of blocks of throughput units. A block consists of 100 reads/sec, 50 writes/sec, and 5 global queries/sec of provisioned throughput capacity. Not available for some plans.
Possible values: 1 ≤ value ≤ 100
Provisioned global queries capacity in operations per second.
Possible values: 0 ≤ value ≤ 2500
Provisioned reads capacity in operations per second.
Possible values: 0 ≤ value ≤ 50000
Provisioned writes capacity in operations per second.
Possible values: 0 ≤ value ≤ 25000
Detailed information about target throughput capacity.
- target
Schema for detailed information about throughput capacity with breakdown by specific throughput requests classes.
- throughput
A number of blocks of throughput units. A block consists of 100 reads/sec, 50 writes/sec, and 5 global queries/sec of provisioned throughput capacity. Not available for some plans.
Possible values: 1 ≤ value ≤ 100
Provisioned global queries capacity in operations per second.
Possible values: 0 ≤ value ≤ 2500
Provisioned reads capacity in operations per second.
Possible values: 0 ≤ value ≤ 50000
Provisioned writes capacity in operations per second.
Possible values: 0 ≤ value ≤ 25000
Schema for information about the currently provisioned and target throughput capacity.
Detailed information about provisioned throughput capacity.
- current
Schema for detailed information about throughput capacity with breakdown by specific throughput requests classes.
- throughput
A number of blocks of throughput units. A block consists of 100 reads/sec, 50 writes/sec, and 5 global queries/sec of provisioned throughput capacity. Not available for some plans.
Possible values: 1 ≤ value ≤ 100
Provisioned global queries capacity in operations per second.
Possible values: 0 ≤ value ≤ 2500
Provisioned reads capacity in operations per second.
Possible values: 0 ≤ value ≤ 50000
Provisioned writes capacity in operations per second.
Possible values: 0 ≤ value ≤ 25000
Detailed information about target throughput capacity.
- target
Schema for detailed information about throughput capacity with breakdown by specific throughput requests classes.
- throughput
A number of blocks of throughput units. A block consists of 100 reads/sec, 50 writes/sec, and 5 global queries/sec of provisioned throughput capacity. Not available for some plans.
Possible values: 1 ≤ value ≤ 100
Provisioned global queries capacity in operations per second.
Possible values: 0 ≤ value ≤ 2500
Provisioned reads capacity in operations per second.
Possible values: 0 ≤ value ≤ 50000
Provisioned writes capacity in operations per second.
Possible values: 0 ≤ value ≤ 25000
Schema for information about the currently provisioned and target throughput capacity.
Detailed information about provisioned throughput capacity.
- current
Schema for detailed information about throughput capacity with breakdown by specific throughput requests classes.
- throughput
A number of blocks of throughput units. A block consists of 100 reads/sec, 50 writes/sec, and 5 global queries/sec of provisioned throughput capacity. Not available for some plans.
Possible values: 1 ≤ value ≤ 100
Provisioned global queries capacity in operations per second.
Possible values: 0 ≤ value ≤ 2500
Provisioned reads capacity in operations per second.
Possible values: 0 ≤ value ≤ 50000
Provisioned writes capacity in operations per second.
Possible values: 0 ≤ value ≤ 25000
Detailed information about target throughput capacity.
- target
Schema for detailed information about throughput capacity with breakdown by specific throughput requests classes.
- throughput
A number of blocks of throughput units. A block consists of 100 reads/sec, 50 writes/sec, and 5 global queries/sec of provisioned throughput capacity. Not available for some plans.
Possible values: 1 ≤ value ≤ 100
Provisioned global queries capacity in operations per second.
Possible values: 0 ≤ value ≤ 2500
Provisioned reads capacity in operations per second.
Possible values: 0 ≤ value ≤ 50000
Provisioned writes capacity in operations per second.
Possible values: 0 ≤ value ≤ 25000
Status Code
HTTP response for getCapacityThroughputInformation.
HTTP error for bad request.
HTTP error for unauthorized.
HTTP error for payment required.
HTTP error for forbidden.
HTTP error for not found.
HTTP error for timeout reading client request.
HTTP error for gone.
HTTP error for too many requests.
HTTP error for internal server error.
HTTP error for bad gateway.
HTTP error for service unavailable.
HTTP error for gateway timeout.
Example CapacityThroughputInformation response.
{ "current": { "throughput": { "blocks": 5, "query": 25, "read": 500, "write": 250 } }, "target": { "throughput": { "blocks": 10, "query": 50, "read": 1000, "write": 500 } } }
Example CapacityThroughputInformation response.
{ "current": { "throughput": { "blocks": 5, "query": 25, "read": 500, "write": 250 } }, "target": { "throughput": { "blocks": 10, "query": 50, "read": 1000, "write": 500 } } }
Example error response for a bad request.
{ "error": "bad_request", "reason": "Bad request." }
Example error response for a bad request.
{ "error": "bad_request", "reason": "Bad request." }
Example error response for reader access is required for this request.
{ "error": "unauthorized", "reason": "_reader access is required for this request." }
Example error response for reader access is required for this request.
{ "error": "unauthorized", "reason": "_reader access is required for this request." }
Example error response for incorrect credentials.
{ "error": "unauthorized", "reason": "Name or password is incorrect." }
Example error response for incorrect credentials.
{ "error": "unauthorized", "reason": "Name or password is incorrect." }
Example error response when payment is required. For example, if the data quota of the plan is exceeded.
{ "error": "payment_required", "reason": "Payment required" }
Example error response when payment is required. For example, if the data quota of the plan is exceeded.
{ "error": "payment_required", "reason": "Payment required" }
Example error response for a forbidden request.
{ "error": "forbidden", "reason": "server_admin access is required for this request" }
Example error response for a forbidden request.
{ "error": "forbidden", "reason": "server_admin access is required for this request" }
Example error response for an account temporarily locked out.
{ "error": "forbidden", "reason": "Account is temporarily locked due to multiple authentication failures" }
Example error response for an account temporarily locked out.
{ "error": "forbidden", "reason": "Account is temporarily locked due to multiple authentication failures" }
Example error response for a not found request.
{ "error": "not_found", "reason": "missing" }
Example error response for a not found request.
{ "error": "not_found", "reason": "missing" }
Example error response for timeout reading client request.
{ "error": "request_timeout", "reason": "Request timeout" }
Example error response for timeout reading client request.
{ "error": "request_timeout", "reason": "Request timeout" }
Example error response for gone.
{ "error": "gone", "reason": "The requested resource is no longer located here, verify your DNS settings." }
Example error response for gone.
{ "error": "gone", "reason": "The requested resource is no longer located here, verify your DNS settings." }
Example error response for too many requests.
{ "error": "too_many_requests", "reason": "You've exceeded your rate limit allowance. Please try again later." }
Example error response for too many requests.
{ "error": "too_many_requests", "reason": "You've exceeded your rate limit allowance. Please try again later." }
Example error response for an unknown server error.
{ "error": "unknown_error", "reason": "function_clause", "ref": 2632214382 }
Example error response for an unknown server error.
{ "error": "unknown_error", "reason": "function_clause", "ref": 2632214382 }
Example error response for bad gateway.
{ "error": "bad_gateway", "reason": "Bad gateway" }
Example error response for bad gateway.
{ "error": "bad_gateway", "reason": "Bad gateway" }
Example error response for service unavailable.
{ "error": "service_unavailable", "reason": "Service unavailable" }
Example error response for service unavailable.
{ "error": "service_unavailable", "reason": "Service unavailable" }
Example error response for gateway timeout.
{ "error": "gateway_timeout", "reason": "Gateway timeout" }
Example error response for gateway timeout.
{ "error": "gateway_timeout", "reason": "Gateway timeout" }
Update the target provisioned throughput capacity
Sets the target provisioned throughput capacity for an IBM Cloudant instance. When target capacity is changed, the current capacity asynchronously changes to meet the target capacity.
Sets the target provisioned throughput capacity for an IBM Cloudant instance. When target capacity is changed, the current capacity asynchronously changes to meet the target capacity.
Sets the target provisioned throughput capacity for an IBM Cloudant instance. When target capacity is changed, the current capacity asynchronously changes to meet the target capacity.
Sets the target provisioned throughput capacity for an IBM Cloudant instance. When target capacity is changed, the current capacity asynchronously changes to meet the target capacity.
Sets the target provisioned throughput capacity for an IBM Cloudant instance. When target capacity is changed, the current capacity asynchronously changes to meet the target capacity.
PUT /_api/v2/user/capacity/throughput
(cloudant *CloudantV1) PutCapacityThroughputConfiguration(putCapacityThroughputConfigurationOptions *PutCapacityThroughputConfigurationOptions) (result *CapacityThroughputInformation, response *core.DetailedResponse, err error)
(cloudant *CloudantV1) PutCapacityThroughputConfigurationWithContext(ctx context.Context, putCapacityThroughputConfigurationOptions *PutCapacityThroughputConfigurationOptions) (result *CapacityThroughputInformation, response *core.DetailedResponse, err error)
ServiceCall<CapacityThroughputInformation> putCapacityThroughputConfiguration(PutCapacityThroughputConfigurationOptions putCapacityThroughputConfigurationOptions)
putCapacityThroughputConfiguration(params)
put_capacity_throughput_configuration(
self,
blocks: int,
**kwargs,
) -> DetailedResponse
Request
Instantiate the PutCapacityThroughputConfigurationOptions
struct and set the fields to provide parameter values for the PutCapacityThroughputConfiguration
method.
Use the PutCapacityThroughputConfigurationOptions.Builder
to create a PutCapacityThroughputConfigurationOptions
object that contains the parameter values for the putCapacityThroughputConfiguration
method.
Custom Headers
Set a unique identifier to trace a request.
Possible values: length = 36, Value must match regular expression
^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-4[0-9a-fA-F]{3}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$
HTTP request body for putCapacityThroughputConfiguration.
Example CapacityThroughputConfiguration request.
{
"blocks": 10
}
A number of blocks of throughput units. A block consists of 100 reads/sec, 50 writes/sec, and 5 global queries/sec of provisioned throughput capacity. Not available for some plans.
Possible values: 1 ≤ value ≤ 100
WithContext method only
A context.Context instance that you can use to specify a timeout for the operation or to cancel an in-flight request.
The PutCapacityThroughputConfiguration options.
A number of blocks of throughput units. A block consists of 100 reads/sec, 50 writes/sec, and 5 global queries/sec of provisioned throughput capacity. Not available for some plans.
Possible values: 1 ≤ value ≤ 100
Examples:10
The putCapacityThroughputConfiguration options.
A number of blocks of throughput units. A block consists of 100 reads/sec, 50 writes/sec, and 5 global queries/sec of provisioned throughput capacity. Not available for some plans.
Possible values: 1 ≤ value ≤ 100
Examples:10
parameters
A number of blocks of throughput units. A block consists of 100 reads/sec, 50 writes/sec, and 5 global queries/sec of provisioned throughput capacity. Not available for some plans.
Possible values: 1 ≤ value ≤ 100
Examples:
parameters
A number of blocks of throughput units. A block consists of 100 reads/sec, 50 writes/sec, and 5 global queries/sec of provisioned throughput capacity. Not available for some plans.
Possible values: 1 ≤ value ≤ 100
Examples:
ibmcloud cloudant capacity-update --blocks 10
curl -H "Authorization: Bearer $API_BEARER_TOKEN" -X PUT -H "Content-Type: application/json" "$SERVICE_URL/_api/v2/user/capacity/throughput" --data '{"blocks": 1}'
import ( "encoding/json" "fmt" "github.com/IBM/cloudant-go-sdk/cloudantv1" )
service, err := cloudantv1.NewCloudantV1( &cloudantv1.CloudantV1Options{}, ) if err != nil { panic(err) } putCapacityThroughputConfigurationOptions := service.NewPutCapacityThroughputConfigurationOptions( 1, ) capacityThroughputConfiguration, response, err := service.PutCapacityThroughputConfiguration(putCapacityThroughputConfigurationOptions) if err != nil { panic(err) } b, _ := json.MarshalIndent(capacityThroughputConfiguration, "", " ") fmt.Println(string(b))
import com.ibm.cloud.cloudant.v1.Cloudant; import com.ibm.cloud.cloudant.v1.model.CapacityThroughputInformation; import com.ibm.cloud.cloudant.v1.model.PutCapacityThroughputConfigurationOptions;
Cloudant service = Cloudant.newInstance(); PutCapacityThroughputConfigurationOptions options = new PutCapacityThroughputConfigurationOptions.Builder() .blocks(1) .build(); CapacityThroughputInformation response = service.putCapacityThroughputConfiguration(options).execute().getResult(); System.out.println(response);
import { CloudantV1 } from '@ibm-cloud/cloudant'; const service = CloudantV1.newInstance({}); service.putCapacityThroughputConfiguration({ blocks: 1, }).then(response => { console.log(response.result); });
from ibmcloudant.cloudant_v1 import CloudantV1 service = CloudantV1.new_instance() response = service.put_capacity_throughput_configuration( blocks=1 ).get_result() print(response)
Response
Schema for information about the currently provisioned and target throughput capacity.
Detailed information about provisioned throughput capacity.
Detailed information about target throughput capacity.
Schema for information about the currently provisioned and target throughput capacity.
Detailed information about provisioned throughput capacity.
- Current
Schema for detailed information about throughput capacity with breakdown by specific throughput requests classes.
- Throughput
A number of blocks of throughput units. A block consists of 100 reads/sec, 50 writes/sec, and 5 global queries/sec of provisioned throughput capacity. Not available for some plans.
Possible values: 1 ≤ value ≤ 100
Provisioned global queries capacity in operations per second.
Possible values: 0 ≤ value ≤ 2500
Provisioned reads capacity in operations per second.
Possible values: 0 ≤ value ≤ 50000
Provisioned writes capacity in operations per second.
Possible values: 0 ≤ value ≤ 25000
Detailed information about target throughput capacity.
- Target
Schema for detailed information about throughput capacity with breakdown by specific throughput requests classes.
- Throughput
A number of blocks of throughput units. A block consists of 100 reads/sec, 50 writes/sec, and 5 global queries/sec of provisioned throughput capacity. Not available for some plans.
Possible values: 1 ≤ value ≤ 100
Provisioned global queries capacity in operations per second.
Possible values: 0 ≤ value ≤ 2500
Provisioned reads capacity in operations per second.
Possible values: 0 ≤ value ≤ 50000
Provisioned writes capacity in operations per second.
Possible values: 0 ≤ value ≤ 25000
Schema for information about the currently provisioned and target throughput capacity.
Detailed information about provisioned throughput capacity.
- current
Schema for detailed information about throughput capacity with breakdown by specific throughput requests classes.
- throughput
A number of blocks of throughput units. A block consists of 100 reads/sec, 50 writes/sec, and 5 global queries/sec of provisioned throughput capacity. Not available for some plans.
Possible values: 1 ≤ value ≤ 100
Provisioned global queries capacity in operations per second.
Possible values: 0 ≤ value ≤ 2500
Provisioned reads capacity in operations per second.
Possible values: 0 ≤ value ≤ 50000
Provisioned writes capacity in operations per second.
Possible values: 0 ≤ value ≤ 25000
Detailed information about target throughput capacity.
- target
Schema for detailed information about throughput capacity with breakdown by specific throughput requests classes.
- throughput
A number of blocks of throughput units. A block consists of 100 reads/sec, 50 writes/sec, and 5 global queries/sec of provisioned throughput capacity. Not available for some plans.
Possible values: 1 ≤ value ≤ 100
Provisioned global queries capacity in operations per second.
Possible values: 0 ≤ value ≤ 2500
Provisioned reads capacity in operations per second.
Possible values: 0 ≤ value ≤ 50000
Provisioned writes capacity in operations per second.
Possible values: 0 ≤ value ≤ 25000
Schema for information about the currently provisioned and target throughput capacity.
Detailed information about provisioned throughput capacity.
- current
Schema for detailed information about throughput capacity with breakdown by specific throughput requests classes.
- throughput
A number of blocks of throughput units. A block consists of 100 reads/sec, 50 writes/sec, and 5 global queries/sec of provisioned throughput capacity. Not available for some plans.
Possible values: 1 ≤ value ≤ 100
Provisioned global queries capacity in operations per second.
Possible values: 0 ≤ value ≤ 2500
Provisioned reads capacity in operations per second.
Possible values: 0 ≤ value ≤ 50000
Provisioned writes capacity in operations per second.
Possible values: 0 ≤ value ≤ 25000
Detailed information about target throughput capacity.
- target
Schema for detailed information about throughput capacity with breakdown by specific throughput requests classes.
- throughput
A number of blocks of throughput units. A block consists of 100 reads/sec, 50 writes/sec, and 5 global queries/sec of provisioned throughput capacity. Not available for some plans.
Possible values: 1 ≤ value ≤ 100
Provisioned global queries capacity in operations per second.
Possible values: 0 ≤ value ≤ 2500
Provisioned reads capacity in operations per second.
Possible values: 0 ≤ value ≤ 50000
Provisioned writes capacity in operations per second.
Possible values: 0 ≤ value ≤ 25000
Schema for information about the currently provisioned and target throughput capacity.
Detailed information about provisioned throughput capacity.
- current
Schema for detailed information about throughput capacity with breakdown by specific throughput requests classes.
- throughput
A number of blocks of throughput units. A block consists of 100 reads/sec, 50 writes/sec, and 5 global queries/sec of provisioned throughput capacity. Not available for some plans.
Possible values: 1 ≤ value ≤ 100
Provisioned global queries capacity in operations per second.
Possible values: 0 ≤ value ≤ 2500
Provisioned reads capacity in operations per second.
Possible values: 0 ≤ value ≤ 50000
Provisioned writes capacity in operations per second.
Possible values: 0 ≤ value ≤ 25000
Detailed information about target throughput capacity.
- target
Schema for detailed information about throughput capacity with breakdown by specific throughput requests classes.
- throughput
A number of blocks of throughput units. A block consists of 100 reads/sec, 50 writes/sec, and 5 global queries/sec of provisioned throughput capacity. Not available for some plans.
Possible values: 1 ≤ value ≤ 100
Provisioned global queries capacity in operations per second.
Possible values: 0 ≤ value ≤ 2500
Provisioned reads capacity in operations per second.
Possible values: 0 ≤ value ≤ 50000
Provisioned writes capacity in operations per second.
Possible values: 0 ≤ value ≤ 25000
Status Code
HTTP response for getCapacityThroughputInformation.
HTTP error for bad request.
HTTP error for unauthorized.
HTTP error for payment required.
HTTP error for forbidden.
HTTP error for not found.
HTTP error for timeout reading client request.
HTTP error for gone.
HTTP error for unsupported media type.
HTTP error for too many requests.
HTTP error for internal server error.
HTTP error for bad gateway.
HTTP error for service unavailable.
HTTP error for gateway timeout.
Example CapacityThroughputInformation response.
{ "current": { "throughput": { "blocks": 5, "query": 25, "read": 500, "write": 250 } }, "target": { "throughput": { "blocks": 10, "query": 50, "read": 1000, "write": 500 } } }
Example CapacityThroughputInformation response.
{ "current": { "throughput": { "blocks": 5, "query": 25, "read": 500, "write": 250 } }, "target": { "throughput": { "blocks": 10, "query": 50, "read": 1000, "write": 500 } } }
Example error response for a bad request.
{ "error": "bad_request", "reason": "Bad request." }
Example error response for a bad request.
{ "error": "bad_request", "reason": "Bad request." }
Example error response for reader access is required for this request.
{ "error": "unauthorized", "reason": "_reader access is required for this request." }
Example error response for reader access is required for this request.
{ "error": "unauthorized", "reason": "_reader access is required for this request." }
Example error response for incorrect credentials.
{ "error": "unauthorized", "reason": "Name or password is incorrect." }
Example error response for incorrect credentials.
{ "error": "unauthorized", "reason": "Name or password is incorrect." }
Example error response when payment is required. For example, if the data quota of the plan is exceeded.
{ "error": "payment_required", "reason": "Payment required" }
Example error response when payment is required. For example, if the data quota of the plan is exceeded.
{ "error": "payment_required", "reason": "Payment required" }
Example error response for a forbidden request.
{ "error": "forbidden", "reason": "server_admin access is required for this request" }
Example error response for a forbidden request.
{ "error": "forbidden", "reason": "server_admin access is required for this request" }
Example error response for an account temporarily locked out.
{ "error": "forbidden", "reason": "Account is temporarily locked due to multiple authentication failures" }
Example error response for an account temporarily locked out.
{ "error": "forbidden", "reason": "Account is temporarily locked due to multiple authentication failures" }
Example error response for a not found request.
{ "error": "not_found", "reason": "missing" }
Example error response for a not found request.
{ "error": "not_found", "reason": "missing" }
Example error response for timeout reading client request.
{ "error": "request_timeout", "reason": "Request timeout" }
Example error response for timeout reading client request.
{ "error": "request_timeout", "reason": "Request timeout" }
Example error response for gone.
{ "error": "gone", "reason": "The requested resource is no longer located here, verify your DNS settings." }
Example error response for gone.
{ "error": "gone", "reason": "The requested resource is no longer located here, verify your DNS settings." }
Example error response for unsupported media type.
{ "error": "bad_content_type", "reason": "Content-Type must be application/json" }
Example error response for unsupported media type.
{ "error": "bad_content_type", "reason": "Content-Type must be application/json" }
Example error response for too many requests.
{ "error": "too_many_requests", "reason": "You've exceeded your rate limit allowance. Please try again later." }
Example error response for too many requests.
{ "error": "too_many_requests", "reason": "You've exceeded your rate limit allowance. Please try again later." }
Example error response for an unknown server error.
{ "error": "unknown_error", "reason": "function_clause", "ref": 2632214382 }
Example error response for an unknown server error.
{ "error": "unknown_error", "reason": "function_clause", "ref": 2632214382 }
Example error response for bad gateway.
{ "error": "bad_gateway", "reason": "Bad gateway" }
Example error response for bad gateway.
{ "error": "bad_gateway", "reason": "Bad gateway" }
Example error response for service unavailable.
{ "error": "service_unavailable", "reason": "Service unavailable" }
Example error response for service unavailable.
{ "error": "service_unavailable", "reason": "Service unavailable" }
Example error response for gateway timeout.
{ "error": "gateway_timeout", "reason": "Gateway timeout" }
Example error response for gateway timeout.
{ "error": "gateway_timeout", "reason": "Gateway timeout" }
Sets a valid account plan for the user
Sets a valid account plan for the user. IBM Cloudant server administrators can change a user's plan across plan groups, whereas a regular IBM Cloudant user can only change between plans within the same plan group.
PUT /_api/v2/user/plan
Request
Custom Headers
Set a unique identifier to trace a request.
Possible values: length = 36, Value must match regular expression
^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-4[0-9a-fA-F]{3}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$
HTTP request body for putUserPlan.
Example putUserPlan request.
{
"plan": "billing.tiered.bluemix.standard",
"plan_multiple": 25
}
The name of the new plan for the account.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
The optional plan multiplier.
Possible values: 1 ≤ value ≤ 100
Response
Schema for an OK result.
ok
Status Code
HTTP response for Ok operations.
HTTP error for bad request.
HTTP error for unauthorized.
HTTP error for payment required.
HTTP error for forbidden.
HTTP error for not found.
HTTP error for timeout reading client request.
HTTP error for gone.
HTTP error for unsupported media type.
HTTP error for too many requests.
HTTP error for internal server error.
HTTP error for bad gateway.
HTTP error for service unavailable.
HTTP error for gateway timeout.
Example Ok response.
{ "ok": true }
Example error response for a bad request.
{ "error": "bad_request", "reason": "Bad request." }
Example error response for reader access is required for this request.
{ "error": "unauthorized", "reason": "_reader access is required for this request." }
Example error response for incorrect credentials.
{ "error": "unauthorized", "reason": "Name or password is incorrect." }
Example error response when payment is required. For example, if the data quota of the plan is exceeded.
{ "error": "payment_required", "reason": "Payment required" }
Example error response for a forbidden request.
{ "error": "forbidden", "reason": "server_admin access is required for this request" }
Example error response for an account temporarily locked out.
{ "error": "forbidden", "reason": "Account is temporarily locked due to multiple authentication failures" }
Example error response for a not found request.
{ "error": "not_found", "reason": "missing" }
Example error response for timeout reading client request.
{ "error": "request_timeout", "reason": "Request timeout" }
Example error response for gone.
{ "error": "gone", "reason": "The requested resource is no longer located here, verify your DNS settings." }
Example error response for unsupported media type.
{ "error": "bad_content_type", "reason": "Content-Type must be application/json" }
Example error response for too many requests.
{ "error": "too_many_requests", "reason": "You've exceeded your rate limit allowance. Please try again later." }
Example error response for an unknown server error.
{ "error": "unknown_error", "reason": "function_clause", "ref": 2632214382 }
Example error response for bad gateway.
{ "error": "bad_gateway", "reason": "Bad gateway" }
Example error response for service unavailable.
{ "error": "service_unavailable", "reason": "Service unavailable" }
Example error response for gateway timeout.
{ "error": "gateway_timeout", "reason": "Gateway timeout" }
Retrieve information about cluster reshard operations
Retrieves a summary of the shard splitting operations for the whole cluster.
GET /_reshard
Request
Custom Headers
Set a unique identifier to trace a request.
Possible values: length = 36, Value must match regular expression
^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-4[0-9a-fA-F]{3}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$
Response
Schema for the shard splitting cluster summary.
Number of complete jobs.
Possible values: 0 ≤ value ≤ 9007199254740992
Number of failed jobs.
Possible values: 0 ≤ value ≤ 9007199254740992
Number of running jobs.
Possible values: 0 ≤ value ≤ 48
States of the shard splitting application. When shard splitting is running on the cluster then all the jobs that haven't been individually stopped will be running as well. When shard splitting is stopped then all the shard splitting jobs will be stopped on the cluster.
Possible values: [
running
,stopped
]State reason.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Number of stopped jobs.
Possible values: 0 ≤ value ≤ 9007199254740992
Total number of jobs.
Possible values: 0 ≤ value ≤ 9007199254740992
Status Code
HTTP response for
/_reshard
style operations.HTTP error for bad request.
HTTP error for unauthorized.
HTTP error for payment required.
HTTP error for forbidden.
HTTP error for not found.
HTTP error for timeout reading client request.
HTTP error for gone.
HTTP error for too many requests.
HTTP error for internal server error.
HTTP error for bad gateway.
HTTP error for service unavailable.
HTTP error for gateway timeout.
Example ReshardInformation response.
{ "completed": 3, "failed": 4, "running": 0, "state": "stopped", "state_reason": "Manual rebalancing.", "stopped": 0, "total": 7 }
Example error response for a bad request.
{ "error": "bad_request", "reason": "Bad request." }
Example error response for reader access is required for this request.
{ "error": "unauthorized", "reason": "_reader access is required for this request." }
Example error response for incorrect credentials.
{ "error": "unauthorized", "reason": "Name or password is incorrect." }
Example error response when payment is required. For example, if the data quota of the plan is exceeded.
{ "error": "payment_required", "reason": "Payment required" }
Example error response for a forbidden request.
{ "error": "forbidden", "reason": "server_admin access is required for this request" }
Example error response for an account temporarily locked out.
{ "error": "forbidden", "reason": "Account is temporarily locked due to multiple authentication failures" }
Example error response for a not found request.
{ "error": "not_found", "reason": "missing" }
Example error response for timeout reading client request.
{ "error": "request_timeout", "reason": "Request timeout" }
Example error response for gone.
{ "error": "gone", "reason": "The requested resource is no longer located here, verify your DNS settings." }
Example error response for too many requests.
{ "error": "too_many_requests", "reason": "You've exceeded your rate limit allowance. Please try again later." }
Example error response for an unknown server error.
{ "error": "unknown_error", "reason": "function_clause", "ref": 2632214382 }
Example error response for bad gateway.
{ "error": "bad_gateway", "reason": "Bad gateway" }
Example error response for service unavailable.
{ "error": "service_unavailable", "reason": "Service unavailable" }
Example error response for gateway timeout.
{ "error": "gateway_timeout", "reason": "Gateway timeout" }
Retrieve HTTP headers for cluster reshard operations
Retrieves the HTTP headers for cluster reshard operations.
HEAD /_reshard
Request
Custom Headers
Set a unique identifier to trace a request.
Possible values: length = 36, Value must match regular expression
^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-4[0-9a-fA-F]{3}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$
Response
Response Headers
Header for returning the compression codec used if an attachment's content_type is in list of compressible types.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Header returning the attachment size. If a compression codec is used, this value is the compressed size.
Possible values: 0 ≤ value ≤ 10485760
Header returning the server response date-time.
Possible values: 28 ≤ length ≤ 31, Value must match regular expression
^(Mon|Tue|Wed|Thu|Fri|Sat|Sun), [0-3]\d (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) \d{4} [0-2]\d:[0-5]\d:[0-6]\d ([+-]\d{4}|[A-Z]{2,3})$
Header returning the server information.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Header added by proxies through which the response was sent.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Header returning the Cloudant IAM action of the request.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^cloudantnosqldb\..+$
Header returning the Cloudant backend that handled the request.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Header returning the Cloudant class of the request.
Possible values: [
lookup
,query
,unlimited
,write
]Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Status Code
HTTP response for
/_reshard
style operations.HTTP error for bad request.
HTTP error for unauthorized.
HTTP error for payment required.
HTTP error for forbidden.
HTTP error for not found.
HTTP error for timeout reading client request.
HTTP error for gone.
HTTP error for too many requests.
HTTP error for internal server error.
HTTP error for bad gateway.
HTTP error for service unavailable.
HTTP error for gateway timeout.
Request
Custom Headers
Set a unique identifier to trace a request.
Possible values: length = 36, Value must match regular expression
^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-4[0-9a-fA-F]{3}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$
Response
Schema for a list of shard splitting jobs.
Offset where the list started.
Possible values: 0 ≤ value ≤ 9007199254740992
Total number of shard splitting jobs.
Possible values: 0 ≤ value ≤ 4294967295
All split jobs.
Possible values: 0 ≤ number of items ≤ 48
Status Code
HTTP response for
/_reshard/jobs
style operations.HTTP error for bad request.
HTTP error for unauthorized.
HTTP error for payment required.
HTTP error for forbidden.
HTTP error for not found.
HTTP error for timeout reading client request.
HTTP error for gone.
HTTP error for too many requests.
HTTP error for internal server error.
HTTP error for bad gateway.
HTTP error for service unavailable.
HTTP error for gateway timeout.
Example ReshardJobsInformation response.
{ "jobs": [ { "history": [ { "detail": null, "timestamp": "2019-02-06T22:28:06Z", "type": "new" }, { "detail": null, "timestamp": "2019-02-06T22:28:10Z", "type": "completed" } ], "id": "001-0a308ef9f7bd24bd4887d6e619682a6d3bb3d0fd94625866c5216ec1167b4e23", "job_state": "completed", "node": "node1@127.0.0.1", "source": "shards/00000000-ffffffff/db1.1549492084", "split_state": "completed", "start_time": "2019-02-06T22:28:06Z", "state_info": {}, "target": [ "shards/00000000-7fffffff/db1.1549492084", "shards/80000000-ffffffff/db1.1549492084" ], "type": "split", "update_time": "2019-02-06T22:28:10Z" } ], "offset": 0, "total_rows": 1 }
Example error response for a bad request.
{ "error": "bad_request", "reason": "Bad request." }
Example error response for reader access is required for this request.
{ "error": "unauthorized", "reason": "_reader access is required for this request." }
Example error response for incorrect credentials.
{ "error": "unauthorized", "reason": "Name or password is incorrect." }
Example error response when payment is required. For example, if the data quota of the plan is exceeded.
{ "error": "payment_required", "reason": "Payment required" }
Example error response for a forbidden request.
{ "error": "forbidden", "reason": "server_admin access is required for this request" }
Example error response for an account temporarily locked out.
{ "error": "forbidden", "reason": "Account is temporarily locked due to multiple authentication failures" }
Example error response for a not found request.
{ "error": "not_found", "reason": "missing" }
Example error response for timeout reading client request.
{ "error": "request_timeout", "reason": "Request timeout" }
Example error response for gone.
{ "error": "gone", "reason": "The requested resource is no longer located here, verify your DNS settings." }
Example error response for too many requests.
{ "error": "too_many_requests", "reason": "You've exceeded your rate limit allowance. Please try again later." }
Example error response for an unknown server error.
{ "error": "unknown_error", "reason": "function_clause", "ref": 2632214382 }
Example error response for bad gateway.
{ "error": "bad_gateway", "reason": "Bad gateway" }
Example error response for service unavailable.
{ "error": "service_unavailable", "reason": "Service unavailable" }
Example error response for gateway timeout.
{ "error": "gateway_timeout", "reason": "Gateway timeout" }
Retrieve HTTP headers of shard splitting jobs
Retrieves the HTTP headers for shard splitting jobs.
HEAD /_reshard/jobs
Request
Custom Headers
Set a unique identifier to trace a request.
Possible values: length = 36, Value must match regular expression
^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-4[0-9a-fA-F]{3}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$
Response
Response Headers
Header for returning the compression codec used if an attachment's content_type is in list of compressible types.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Header returning the attachment size. If a compression codec is used, this value is the compressed size.
Possible values: 0 ≤ value ≤ 10485760
Header returning the server response date-time.
Possible values: 28 ≤ length ≤ 31, Value must match regular expression
^(Mon|Tue|Wed|Thu|Fri|Sat|Sun), [0-3]\d (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) \d{4} [0-2]\d:[0-5]\d:[0-6]\d ([+-]\d{4}|[A-Z]{2,3})$
Header returning the server information.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Header added by proxies through which the response was sent.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Header returning the Cloudant IAM action of the request.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^cloudantnosqldb\..+$
Header returning the Cloudant backend that handled the request.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Header returning the Cloudant class of the request.
Possible values: [
lookup
,query
,unlimited
,write
]Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Status Code
HTTP response for
/_reshard/jobs
style operations.HTTP error for bad request.
HTTP error for unauthorized.
HTTP error for payment required.
HTTP error for forbidden.
HTTP error for not found.
HTTP error for timeout reading client request.
HTTP error for gone.
HTTP error for too many requests.
HTTP error for internal server error.
HTTP error for bad gateway.
HTTP error for service unavailable.
HTTP error for gateway timeout.
Request
Custom Headers
Set a unique identifier to trace a request.
Possible values: length = 36, Value must match regular expression
^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-4[0-9a-fA-F]{3}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$
HTTP request body for postReshardJobsConfiguration.
Example ReshardJobs request.
{
"db": "db1",
"node": "node1@127.0.0.1",
"range": "80000000-bfffffff",
"type": "split"
}
Job type. Currently the only type accepted is split.
Allowable values: [
split
]Schema for a database name.
Possible values: 1 ≤ length ≤ 238, Value must match regular expression
^_dbs$|^_global_changes$|^_metadata$|^_nodes$|^_replicator$|^_users$|^[a-z][a-z0-9_$()+/-]*$
Node name.
Possible values: 1 ≤ length ≤ 255, Value must match regular expression
^.+$
Shard range.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Database shard.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Response
Schema for the result of a shard splitting jobs response.
Node name.
Possible values: 1 ≤ length ≤ 255, Value must match regular expression
^.+$
Database shard.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
ok
The cause of the error (if available).
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
The name of the error.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
The reason the error occurred (if available).
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
An internal error reference (if available).
Possible values: 0 ≤ value ≤ 9007199254740992
Schema for a document ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^([^_]|_(design|local)\/).+$
Status Code
HTTP response for postReshardJobsConfiguration.
HTTP response for postReshardJobsConfiguration.
HTTP error for bad request.
HTTP error for unauthorized.
HTTP error for payment required.
HTTP error for forbidden.
HTTP error for not found.
HTTP error for timeout reading client request.
HTTP error for gone.
HTTP error for payload too large.
HTTP error for unsupported media type.
HTTP error for too many requests.
HTTP error for internal server error.
HTTP error for bad gateway.
HTTP error for service unavailable.
HTTP error for gateway timeout.
Example postReshardJobsConfiguration response.
[ { "id": "001-30d7848a6feeb826d5e3ea5bb7773d672af226fd34fd84a8fb1ca736285df557", "node": "node1@127.0.0.1", "ok": "true,", "shard": "shards/80000000-ffffffff/db3.1554148353" }, { "id": "001-40d7848a6feeb826d5e3ea5bb7773d672af226fd34fd84a8fb1ca736285df600", "node": "node2@127.0.0.1", "ok": "true,", "shard": "shards/80000000-ffffffff/db3.1554148353" } ]
Example postReshardJobsConfiguration response.
[ { "id": "001-30d7848a6feeb826d5e3ea5bb7773d672af226fd34fd84a8fb1ca736285df557", "node": "node1@127.0.0.1", "ok": "true,", "shard": "shards/80000000-ffffffff/db3.1554148353" }, { "id": "001-40d7848a6feeb826d5e3ea5bb7773d672af226fd34fd84a8fb1ca736285df600", "node": "node2@127.0.0.1", "ok": "true,", "shard": "shards/80000000-ffffffff/db3.1554148353" } ]
Example error response for a bad request.
{ "error": "bad_request", "reason": "Bad request." }
Example error response for reader access is required for this request.
{ "error": "unauthorized", "reason": "_reader access is required for this request." }
Example error response for incorrect credentials.
{ "error": "unauthorized", "reason": "Name or password is incorrect." }
Example error response when payment is required. For example, if the data quota of the plan is exceeded.
{ "error": "payment_required", "reason": "Payment required" }
Example error response for a forbidden request.
{ "error": "forbidden", "reason": "server_admin access is required for this request" }
Example error response for an account temporarily locked out.
{ "error": "forbidden", "reason": "Account is temporarily locked due to multiple authentication failures" }
Example error response for a not found request.
{ "error": "not_found", "reason": "missing" }
Example error response for timeout reading client request.
{ "error": "request_timeout", "reason": "Request timeout" }
Example error response for gone.
{ "error": "gone", "reason": "The requested resource is no longer located here, verify your DNS settings." }
Example error response for a request size that exceeds the limit.
{ "error": "too_large", "reason": "the request entity is too large" }
Example error response for unsupported media type.
{ "error": "bad_content_type", "reason": "Content-Type must be application/json" }
Example error response for too many requests.
{ "error": "too_many_requests", "reason": "You've exceeded your rate limit allowance. Please try again later." }
Example error response for an unknown server error.
{ "error": "unknown_error", "reason": "function_clause", "ref": 2632214382 }
Example error response for bad gateway.
{ "error": "bad_gateway", "reason": "Bad gateway" }
Example error response for service unavailable.
{ "error": "service_unavailable", "reason": "Service unavailable" }
Example error response for gateway timeout.
{ "error": "gateway_timeout", "reason": "Gateway timeout" }
Delete a shard splitting job
Stop and remove a shard splitting job.
DELETE /_reshard/jobs/{reshard_job_id}
Request
Custom Headers
Set a unique identifier to trace a request.
Possible values: length = 36, Value must match regular expression
^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-4[0-9a-fA-F]{3}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$
Path Parameters
Path parameter to specify the shard splitting job ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Response
Schema for an OK result.
ok
Status Code
HTTP response for Ok operations.
HTTP error for bad request.
HTTP error for unauthorized.
HTTP error for payment required.
HTTP error for forbidden.
HTTP error for not found.
HTTP error for timeout reading client request.
HTTP error for gone.
HTTP error for too many requests.
HTTP error for internal server error.
HTTP error for bad gateway.
HTTP error for service unavailable.
HTTP error for gateway timeout.
Example Ok response.
{ "ok": true }
Example error response for a bad request.
{ "error": "bad_request", "reason": "Bad request." }
Example error response for reader access is required for this request.
{ "error": "unauthorized", "reason": "_reader access is required for this request." }
Example error response for incorrect credentials.
{ "error": "unauthorized", "reason": "Name or password is incorrect." }
Example error response when payment is required. For example, if the data quota of the plan is exceeded.
{ "error": "payment_required", "reason": "Payment required" }
Example error response for a forbidden request.
{ "error": "forbidden", "reason": "server_admin access is required for this request" }
Example error response for an account temporarily locked out.
{ "error": "forbidden", "reason": "Account is temporarily locked due to multiple authentication failures" }
Example error response for a not found request.
{ "error": "not_found", "reason": "missing" }
Example error response for timeout reading client request.
{ "error": "request_timeout", "reason": "Request timeout" }
Example error response for gone.
{ "error": "gone", "reason": "The requested resource is no longer located here, verify your DNS settings." }
Example error response for too many requests.
{ "error": "too_many_requests", "reason": "You've exceeded your rate limit allowance. Please try again later." }
Example error response for an unknown server error.
{ "error": "unknown_error", "reason": "function_clause", "ref": 2632214382 }
Example error response for bad gateway.
{ "error": "bad_gateway", "reason": "Bad gateway" }
Example error response for service unavailable.
{ "error": "service_unavailable", "reason": "Service unavailable" }
Example error response for gateway timeout.
{ "error": "gateway_timeout", "reason": "Gateway timeout" }
Retrieve information about a shard splitting job
Retrieves the state of a shard splitting job.
GET /_reshard/jobs/{reshard_job_id}
Request
Custom Headers
Set a unique identifier to trace a request.
Possible values: length = 36, Value must match regular expression
^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-4[0-9a-fA-F]{3}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$
Path Parameters
Path parameter to specify the shard splitting job ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Response
Schema for the state of a shard splitting job.
The timeline of job state transitions with a timestamp and additional details (if available).
Possible values: 0 ≤ number of items ≤ 20
The ID of the job.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
This is the running state of the job.
Possible values: [
completed
,failed
,new
,running
,stopped
]Node where this job is running.
Possible values: 1 ≤ length ≤ 255, Value must match regular expression
^.+$
Source shard.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
How far along the shard splitting process has progressed.
Possible values: [
build_indices
,completed
,copy_local_docs
,initial_copy
,new
,source_delete
,topoff1
,topoff2
,topoff3
,update_shard_map
,wait_source_close
]Time when job had started running last. A job might have been stopped or the node restarted to this time might not match with the creation time.
Possible values: 1 ≤ length ≤ 26
Additional information about the current running state. On retry it will include the last error that cause the retry to happen.
- state_info
Target shards.
Possible values: 0 ≤ number of items ≤ 4294967295, 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Job type. Currently the only type accepted is split.
Possible values: [
split
]Time of the last update to the job state.
Possible values: 1 ≤ length ≤ 26
Status Code
HTTP response for
/_reshard/jobs/{reshard_job_id}
style operations.HTTP error for bad request.
HTTP error for unauthorized.
HTTP error for payment required.
HTTP error for forbidden.
HTTP error for not found.
HTTP error for timeout reading client request.
HTTP error for gone.
HTTP error for too many requests.
HTTP error for internal server error.
HTTP error for bad gateway.
HTTP error for service unavailable.
HTTP error for gateway timeout.
Example ReshardJobInformation response.
{ "history": [ { "detail": null, "timestamp": "2019-02-06T22:28:06Z", "type": "new" }, { "detail": null, "timestamp": "2019-02-06T22:28:10Z", "type": "completed" } ], "id": "001-0a308ef9f7bd24bd4887d6e619682a6d3bb3d0fd94625866c5216ec1167b4e23", "job_state": "completed", "node": "node1@127.0.0.1", "source": "shards/00000000-ffffffff/db1.1549492084", "split_state": "completed", "start_time": "2019-02-06T22:28:06Z", "state_info": {}, "target": [ "shards/00000000-7fffffff/db1.1549492084", "shards/80000000-ffffffff/db1.1549492084" ], "type": "split", "update_time": "2019-02-06T22:28:10Z" }
Example error response for a bad request.
{ "error": "bad_request", "reason": "Bad request." }
Example error response for reader access is required for this request.
{ "error": "unauthorized", "reason": "_reader access is required for this request." }
Example error response for incorrect credentials.
{ "error": "unauthorized", "reason": "Name or password is incorrect." }
Example error response when payment is required. For example, if the data quota of the plan is exceeded.
{ "error": "payment_required", "reason": "Payment required" }
Example error response for a forbidden request.
{ "error": "forbidden", "reason": "server_admin access is required for this request" }
Example error response for an account temporarily locked out.
{ "error": "forbidden", "reason": "Account is temporarily locked due to multiple authentication failures" }
Example error response for a not found request.
{ "error": "not_found", "reason": "missing" }
Example error response for timeout reading client request.
{ "error": "request_timeout", "reason": "Request timeout" }
Example error response for gone.
{ "error": "gone", "reason": "The requested resource is no longer located here, verify your DNS settings." }
Example error response for too many requests.
{ "error": "too_many_requests", "reason": "You've exceeded your rate limit allowance. Please try again later." }
Example error response for an unknown server error.
{ "error": "unknown_error", "reason": "function_clause", "ref": 2632214382 }
Example error response for bad gateway.
{ "error": "bad_gateway", "reason": "Bad gateway" }
Example error response for service unavailable.
{ "error": "service_unavailable", "reason": "Service unavailable" }
Example error response for gateway timeout.
{ "error": "gateway_timeout", "reason": "Gateway timeout" }
Retrieve information about a shard splitting job
Retrieves the state of a shard splitting job.
HEAD /_reshard/jobs/{reshard_job_id}
Request
Custom Headers
Set a unique identifier to trace a request.
Possible values: length = 36, Value must match regular expression
^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-4[0-9a-fA-F]{3}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$
Path Parameters
Path parameter to specify the shard splitting job ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Response
Response Headers
Header for returning the compression codec used if an attachment's content_type is in list of compressible types.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Header returning the attachment size. If a compression codec is used, this value is the compressed size.
Possible values: 0 ≤ value ≤ 10485760
Header returning the server response date-time.
Possible values: 28 ≤ length ≤ 31, Value must match regular expression
^(Mon|Tue|Wed|Thu|Fri|Sat|Sun), [0-3]\d (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) \d{4} [0-2]\d:[0-5]\d:[0-6]\d ([+-]\d{4}|[A-Z]{2,3})$
Header returning the server information.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Header added by proxies through which the response was sent.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Header returning the Cloudant IAM action of the request.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^cloudantnosqldb\..+$
Header returning the Cloudant backend that handled the request.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Header returning the Cloudant class of the request.
Possible values: [
lookup
,query
,unlimited
,write
]Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Status Code
HTTP response for
/_reshard/jobs/{reshard_job_id}
style operations.HTTP error for bad request.
HTTP error for unauthorized.
HTTP error for payment required.
HTTP error for forbidden.
HTTP error for not found.
HTTP error for timeout reading client request.
HTTP error for gone.
HTTP error for too many requests.
HTTP error for internal server error.
HTTP error for bad gateway.
HTTP error for service unavailable.
HTTP error for gateway timeout.
Retrieve the running state of a shard splitting job
Retrieves the running state of a shard splitting job.
GET /_reshard/jobs/{reshard_job_id}/state
Request
Custom Headers
Set a unique identifier to trace a request.
Possible values: length = 36, Value must match regular expression
^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-4[0-9a-fA-F]{3}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$
Path Parameters
Path parameter to specify the shard splitting job ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Response
Schema for the state information of a shard splitting job.
Reason for job state.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Job state.
Possible values: [
completed
,failed
,running
,stopped
]
Status Code
HTTP response for
/_reshard/state
style operations.HTTP error for bad request.
HTTP error for unauthorized.
HTTP error for payment required.
HTTP error for forbidden.
HTTP error for not found.
HTTP error for timeout reading client request.
HTTP error for gone.
HTTP error for too many requests.
HTTP error for internal server error.
HTTP error for bad gateway.
HTTP error for service unavailable.
HTTP error for gateway timeout.
Example request or response body for the state of cluster resharding.
{ "reason": "Pause resharding across the cluster.", "state": "stopped" }
Example request or response body for the state of a reshard job.
{ "reason": "Pause this job for now.", "state": "stopped" }
Example error response for a bad request.
{ "error": "bad_request", "reason": "Bad request." }
Example error response for reader access is required for this request.
{ "error": "unauthorized", "reason": "_reader access is required for this request." }
Example error response for incorrect credentials.
{ "error": "unauthorized", "reason": "Name or password is incorrect." }
Example error response when payment is required. For example, if the data quota of the plan is exceeded.
{ "error": "payment_required", "reason": "Payment required" }
Example error response for a forbidden request.
{ "error": "forbidden", "reason": "server_admin access is required for this request" }
Example error response for an account temporarily locked out.
{ "error": "forbidden", "reason": "Account is temporarily locked due to multiple authentication failures" }
Example error response for a not found request.
{ "error": "not_found", "reason": "missing" }
Example error response for timeout reading client request.
{ "error": "request_timeout", "reason": "Request timeout" }
Example error response for gone.
{ "error": "gone", "reason": "The requested resource is no longer located here, verify your DNS settings." }
Example error response for too many requests.
{ "error": "too_many_requests", "reason": "You've exceeded your rate limit allowance. Please try again later." }
Example error response for an unknown server error.
{ "error": "unknown_error", "reason": "function_clause", "ref": 2632214382 }
Example error response for bad gateway.
{ "error": "bad_gateway", "reason": "Bad gateway" }
Example error response for service unavailable.
{ "error": "service_unavailable", "reason": "Service unavailable" }
Example error response for gateway timeout.
{ "error": "gateway_timeout", "reason": "Gateway timeout" }
Retrieve HTTP headers of a shard splitting job
Retrieves the HTTP headers of a shard splitting job.
HEAD /_reshard/jobs/{reshard_job_id}/state
Request
Custom Headers
Set a unique identifier to trace a request.
Possible values: length = 36, Value must match regular expression
^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-4[0-9a-fA-F]{3}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$
Path Parameters
Path parameter to specify the shard splitting job ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Response
Response Headers
Header for returning the compression codec used if an attachment's content_type is in list of compressible types.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Header returning the attachment size. If a compression codec is used, this value is the compressed size.
Possible values: 0 ≤ value ≤ 10485760
Header returning the server response date-time.
Possible values: 28 ≤ length ≤ 31, Value must match regular expression
^(Mon|Tue|Wed|Thu|Fri|Sat|Sun), [0-3]\d (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) \d{4} [0-2]\d:[0-5]\d:[0-6]\d ([+-]\d{4}|[A-Z]{2,3})$
Header returning the server information.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Header added by proxies through which the response was sent.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Header returning the Cloudant IAM action of the request.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^cloudantnosqldb\..+$
Header returning the Cloudant backend that handled the request.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Header returning the Cloudant class of the request.
Possible values: [
lookup
,query
,unlimited
,write
]Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Status Code
HTTP response for
/_reshard/state
style operations.HTTP error for bad request.
HTTP error for unauthorized.
HTTP error for payment required.
HTTP error for forbidden.
HTTP error for not found.
HTTP error for timeout reading client request.
HTTP error for gone.
HTTP error for too many requests.
HTTP error for internal server error.
HTTP error for bad gateway.
HTTP error for service unavailable.
HTTP error for gateway timeout.
Update the running state of a shard splitting job
Update the running state of a shard splitting job. The state can be changed from stopped to running or from running to stopped. If an individual job is stopped via this API it will stay stopped even after the global resharding state is toggled from stopped to running. If the job is already completed its state will stay completed.
PUT /_reshard/jobs/{reshard_job_id}/state
Request
Custom Headers
Set a unique identifier to trace a request.
Possible values: length = 36, Value must match regular expression
^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-4[0-9a-fA-F]{3}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$
Path Parameters
Path parameter to specify the shard splitting job ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
HTTP request body for putReshardState or putReshardJobState.
Example request or response body for the state of cluster resharding.
{
"reason": "Pause resharding across the cluster.",
"state": "stopped"
}
Example request or response body for the state of a reshard job.
{
"reason": "Pause this job for now.",
"state": "stopped"
}
Reason for job state.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Job state.
Allowable values: [
completed
,failed
,running
,stopped
]
Response
Schema for an OK result.
ok
Status Code
HTTP response for Ok operations.
HTTP error for bad request.
HTTP error for unauthorized.
HTTP error for payment required.
HTTP error for forbidden.
HTTP error for not found.
HTTP error for timeout reading client request.
HTTP error for gone.
HTTP error for payload too large.
HTTP error for unsupported media type.
HTTP error for too many requests.
HTTP error for internal server error.
HTTP error for bad gateway.
HTTP error for service unavailable.
HTTP error for gateway timeout.
Example Ok response.
{ "ok": true }
Example error response for a bad request.
{ "error": "bad_request", "reason": "Bad request." }
Example error response for reader access is required for this request.
{ "error": "unauthorized", "reason": "_reader access is required for this request." }
Example error response for incorrect credentials.
{ "error": "unauthorized", "reason": "Name or password is incorrect." }
Example error response when payment is required. For example, if the data quota of the plan is exceeded.
{ "error": "payment_required", "reason": "Payment required" }
Example error response for a forbidden request.
{ "error": "forbidden", "reason": "server_admin access is required for this request" }
Example error response for an account temporarily locked out.
{ "error": "forbidden", "reason": "Account is temporarily locked due to multiple authentication failures" }
Example error response for a not found request.
{ "error": "not_found", "reason": "missing" }
Example error response for timeout reading client request.
{ "error": "request_timeout", "reason": "Request timeout" }
Example error response for gone.
{ "error": "gone", "reason": "The requested resource is no longer located here, verify your DNS settings." }
Example error response for a request size that exceeds the limit.
{ "error": "too_large", "reason": "the request entity is too large" }
Example error response for unsupported media type.
{ "error": "bad_content_type", "reason": "Content-Type must be application/json" }
Example error response for too many requests.
{ "error": "too_many_requests", "reason": "You've exceeded your rate limit allowance. Please try again later." }
Example error response for an unknown server error.
{ "error": "unknown_error", "reason": "function_clause", "ref": 2632214382 }
Example error response for bad gateway.
{ "error": "bad_gateway", "reason": "Bad gateway" }
Example error response for service unavailable.
{ "error": "service_unavailable", "reason": "Service unavailable" }
Example error response for gateway timeout.
{ "error": "gateway_timeout", "reason": "Gateway timeout" }
Retrieve the state of shard splitting across the cluster
Retrieves the state of shard splitting across the cluster.
GET /_reshard/state
Request
Custom Headers
Set a unique identifier to trace a request.
Possible values: length = 36, Value must match regular expression
^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-4[0-9a-fA-F]{3}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$
Response
Schema for the state information of a shard splitting job.
Reason for job state.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Job state.
Possible values: [
completed
,failed
,running
,stopped
]
Status Code
HTTP response for
/_reshard/state
style operations.HTTP error for bad request.
HTTP error for unauthorized.
HTTP error for payment required.
HTTP error for forbidden.
HTTP error for not found.
HTTP error for timeout reading client request.
HTTP error for gone.
HTTP error for too many requests.
HTTP error for internal server error.
HTTP error for bad gateway.
HTTP error for service unavailable.
HTTP error for gateway timeout.
Example request or response body for the state of cluster resharding.
{ "reason": "Pause resharding across the cluster.", "state": "stopped" }
Example request or response body for the state of a reshard job.
{ "reason": "Pause this job for now.", "state": "stopped" }
Example error response for a bad request.
{ "error": "bad_request", "reason": "Bad request." }
Example error response for reader access is required for this request.
{ "error": "unauthorized", "reason": "_reader access is required for this request." }
Example error response for incorrect credentials.
{ "error": "unauthorized", "reason": "Name or password is incorrect." }
Example error response when payment is required. For example, if the data quota of the plan is exceeded.
{ "error": "payment_required", "reason": "Payment required" }
Example error response for a forbidden request.
{ "error": "forbidden", "reason": "server_admin access is required for this request" }
Example error response for an account temporarily locked out.
{ "error": "forbidden", "reason": "Account is temporarily locked due to multiple authentication failures" }
Example error response for a not found request.
{ "error": "not_found", "reason": "missing" }
Example error response for timeout reading client request.
{ "error": "request_timeout", "reason": "Request timeout" }
Example error response for gone.
{ "error": "gone", "reason": "The requested resource is no longer located here, verify your DNS settings." }
Example error response for too many requests.
{ "error": "too_many_requests", "reason": "You've exceeded your rate limit allowance. Please try again later." }
Example error response for an unknown server error.
{ "error": "unknown_error", "reason": "function_clause", "ref": 2632214382 }
Example error response for bad gateway.
{ "error": "bad_gateway", "reason": "Bad gateway" }
Example error response for service unavailable.
{ "error": "service_unavailable", "reason": "Service unavailable" }
Example error response for gateway timeout.
{ "error": "gateway_timeout", "reason": "Gateway timeout" }
Retrieve HTTP headers of shard splitting across the cluster
Retrieves the HTTP headers of shard splitting across the cluster.
HEAD /_reshard/state
Request
Custom Headers
Set a unique identifier to trace a request.
Possible values: length = 36, Value must match regular expression
^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-4[0-9a-fA-F]{3}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$
Response
Response Headers
Header for returning the compression codec used if an attachment's content_type is in list of compressible types.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Header returning the attachment size. If a compression codec is used, this value is the compressed size.
Possible values: 0 ≤ value ≤ 10485760
Header returning the server response date-time.
Possible values: 28 ≤ length ≤ 31, Value must match regular expression
^(Mon|Tue|Wed|Thu|Fri|Sat|Sun), [0-3]\d (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) \d{4} [0-2]\d:[0-5]\d:[0-6]\d ([+-]\d{4}|[A-Z]{2,3})$
Header returning the server information.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Header added by proxies through which the response was sent.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Header returning the Cloudant IAM action of the request.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^cloudantnosqldb\..+$
Header returning the Cloudant backend that handled the request.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Header returning the Cloudant class of the request.
Possible values: [
lookup
,query
,unlimited
,write
]Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Status Code
HTTP response for
/_reshard/state
style operations.HTTP error for bad request.
HTTP error for unauthorized.
HTTP error for payment required.
HTTP error for forbidden.
HTTP error for not found.
HTTP error for timeout reading client request.
HTTP error for gone.
HTTP error for too many requests.
HTTP error for internal server error.
HTTP error for bad gateway.
HTTP error for service unavailable.
HTTP error for gateway timeout.
Enable/disable shard splitting across the cluster
Enable/disable shard splitting across the cluster. The states are stopped or running. This starts and stops global resharding on all the nodes of the cluster. If there are any running jobs, they will be stopped when the state changes to stopped. When the state changes back to running those job will continue running.
PUT /_reshard/state
Request
Custom Headers
Set a unique identifier to trace a request.
Possible values: length = 36, Value must match regular expression
^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-4[0-9a-fA-F]{3}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$
HTTP request body for putReshardState or putReshardJobState.
Example request or response body for the state of cluster resharding.
{
"reason": "Pause resharding across the cluster.",
"state": "stopped"
}
Example request or response body for the state of a reshard job.
{
"reason": "Pause this job for now.",
"state": "stopped"
}
Reason for job state.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Job state.
Allowable values: [
completed
,failed
,running
,stopped
]
Response
Schema for an OK result.
ok
Status Code
HTTP response for Ok operations.
HTTP error for bad request.
HTTP error for unauthorized.
HTTP error for payment required.
HTTP error for forbidden.
HTTP error for not found.
HTTP error for timeout reading client request.
HTTP error for gone.
HTTP error for payload too large.
HTTP error for unsupported media type.
HTTP error for too many requests.
HTTP error for internal server error.
HTTP error for bad gateway.
HTTP error for service unavailable.
HTTP error for gateway timeout.
Example Ok response.
{ "ok": true }
Example error response for a bad request.
{ "error": "bad_request", "reason": "Bad request." }
Example error response for reader access is required for this request.
{ "error": "unauthorized", "reason": "_reader access is required for this request." }
Example error response for incorrect credentials.
{ "error": "unauthorized", "reason": "Name or password is incorrect." }
Example error response when payment is required. For example, if the data quota of the plan is exceeded.
{ "error": "payment_required", "reason": "Payment required" }
Example error response for a forbidden request.
{ "error": "forbidden", "reason": "server_admin access is required for this request" }
Example error response for an account temporarily locked out.
{ "error": "forbidden", "reason": "Account is temporarily locked due to multiple authentication failures" }
Example error response for a not found request.
{ "error": "not_found", "reason": "missing" }
Example error response for timeout reading client request.
{ "error": "request_timeout", "reason": "Request timeout" }
Example error response for gone.
{ "error": "gone", "reason": "The requested resource is no longer located here, verify your DNS settings." }
Example error response for a request size that exceeds the limit.
{ "error": "too_large", "reason": "the request entity is too large" }
Example error response for unsupported media type.
{ "error": "bad_content_type", "reason": "Content-Type must be application/json" }
Example error response for too many requests.
{ "error": "too_many_requests", "reason": "You've exceeded your rate limit allowance. Please try again later." }
Example error response for an unknown server error.
{ "error": "unknown_error", "reason": "function_clause", "ref": 2632214382 }
Example error response for bad gateway.
{ "error": "bad_gateway", "reason": "Bad gateway" }
Example error response for service unavailable.
{ "error": "service_unavailable", "reason": "Service unavailable" }
Example error response for gateway timeout.
{ "error": "gateway_timeout", "reason": "Gateway timeout" }
Retrieve one or more UUIDs
Requests one or more Universally Unique Identifiers (UUIDs) from the instance. The response is a JSON object that provides a list of UUIDs.
Tip: The authentication for this endpoint is only enforced when using IAM.
Requests one or more Universally Unique Identifiers (UUIDs) from the instance. The response is a JSON object that provides a list of UUIDs.
Tip: The authentication for this endpoint is only enforced when using IAM.
Requests one or more Universally Unique Identifiers (UUIDs) from the instance. The response is a JSON object that provides a list of UUIDs.
Tip: The authentication for this endpoint is only enforced when using IAM.
Requests one or more Universally Unique Identifiers (UUIDs) from the instance. The response is a JSON object that provides a list of UUIDs.
Tip: The authentication for this endpoint is only enforced when using IAM.
Requests one or more Universally Unique Identifiers (UUIDs) from the instance. The response is a JSON object that provides a list of UUIDs.
Tip: The authentication for this endpoint is only enforced when using IAM.
GET /_uuids
(cloudant *CloudantV1) GetUuids(getUuidsOptions *GetUuidsOptions) (result *UuidsResult, response *core.DetailedResponse, err error)
(cloudant *CloudantV1) GetUuidsWithContext(ctx context.Context, getUuidsOptions *GetUuidsOptions) (result *UuidsResult, response *core.DetailedResponse, err error)
ServiceCall<UuidsResult> getUuids(GetUuidsOptions getUuidsOptions)
getUuids(params)
get_uuids(
self,
*,
count: Optional[int] = None,
**kwargs,
) -> DetailedResponse
Request
Instantiate the GetUuidsOptions
struct and set the fields to provide parameter values for the GetUuids
method.
Use the GetUuidsOptions.Builder
to create a GetUuidsOptions
object that contains the parameter values for the getUuids
method.
Custom Headers
Set a unique identifier to trace a request.
Possible values: length = 36, Value must match regular expression
^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-4[0-9a-fA-F]{3}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$
Query Parameters
Query parameter to specify the number of UUIDs to return.
Possible values: 0 ≤ value ≤ 1000
Default:
1
WithContext method only
A context.Context instance that you can use to specify a timeout for the operation or to cancel an in-flight request.
The GetUuids options.
Query parameter to specify the number of UUIDs to return.
Possible values: 0 ≤ value ≤ 1000
Default:
1
The getUuids options.
Query parameter to specify the number of UUIDs to return.
Possible values: 0 ≤ value ≤ 1000
Default:
1
parameters
Query parameter to specify the number of UUIDs to return.
Possible values: 0 ≤ value ≤ 1000
Default:
1
parameters
Query parameter to specify the number of UUIDs to return.
Possible values: 0 ≤ value ≤ 1000
Default:
1
curl -H "Authorization: Bearer $API_BEARER_TOKEN" -X GET "$SERVICE_URL/_uuids?count=10"
import ( "encoding/json" "fmt" "github.com/IBM/cloudant-go-sdk/cloudantv1" )
service, err := cloudantv1.NewCloudantV1( &cloudantv1.CloudantV1Options{}, ) if err != nil { panic(err) } getUuidsOptions := service.NewGetUuidsOptions() getUuidsOptions.SetCount(10) uuidsResult, response, err := service.GetUuids(getUuidsOptions) if err != nil { panic(err) } b, _ := json.MarshalIndent(uuidsResult, "", " ") fmt.Println(string(b))
import com.ibm.cloud.cloudant.v1.Cloudant; import com.ibm.cloud.cloudant.v1.model.GetUuidsOptions; import com.ibm.cloud.cloudant.v1.model.UuidsResult;
Cloudant service = Cloudant.newInstance(); GetUuidsOptions uuidsOptions = new GetUuidsOptions.Builder() .count(10) .build(); UuidsResult response = service.getUuids(uuidsOptions).execute() .getResult(); System.out.println(response);
import { CloudantV1 } from '@ibm-cloud/cloudant'; const service = CloudantV1.newInstance({}); const uuidsParams: CloudantV1.GetUuidsParams = { count: 10 }; service.getUuids(uuidsParams).then(response => { console.log(response.result); });
from ibmcloudant.cloudant_v1 import CloudantV1 service = CloudantV1.new_instance() response = service.get_uuids(count=10).get_result() print(response)
Response
Schema for a set of uuids generated by the server.
uuids
Possible values: 0 ≤ number of items ≤ 1000, length = 32, Value must match regular expression
^[\da-f]{32}$
Schema for a set of uuids generated by the server.
uuids.
Possible values: 0 ≤ number of items ≤ 1000, length = 32, Value must match regular expression
/^[\\da-f]{32}$/
Schema for a set of uuids generated by the server.
uuids.
Possible values: 0 ≤ number of items ≤ 1000, length = 32, Value must match regular expression
/^[\\da-f]{32}$/
Schema for a set of uuids generated by the server.
uuids.
Possible values: 0 ≤ number of items ≤ 1000, length = 32, Value must match regular expression
/^[\\da-f]{32}$/
Schema for a set of uuids generated by the server.
uuids.
Possible values: 0 ≤ number of items ≤ 1000, length = 32, Value must match regular expression
/^[\\da-f]{32}$/
Status Code
HTTP response for
/_uuids
style operations.HTTP error for bad request.
HTTP error for unauthorized.
HTTP error for payment required.
HTTP error for forbidden.
HTTP error for not found.
HTTP error for timeout reading client request.
HTTP error for gone.
HTTP error for too many requests.
HTTP error for internal server error.
HTTP error for bad gateway.
HTTP error for service unavailable.
HTTP error for gateway timeout.
Example UuidsResult response.
{ "uuids": [ "75480ca477454894678e22eec6002413", "75480ca477454894678e22eec600250b", "75480ca477454894678e22eec6002c41", "75480ca477454894678e22eec6003b90", "75480ca477454894678e22eec6003fca", "75480ca477454894678e22eec6004bef", "75480ca477454894678e22eec600528f", "75480ca477454894678e22eec6005e0b", "75480ca477454894678e22eec6006158", "75480ca477454894678e22eec6006161" ] }
Example UuidsResult response.
{ "uuids": [ "75480ca477454894678e22eec6002413", "75480ca477454894678e22eec600250b", "75480ca477454894678e22eec6002c41", "75480ca477454894678e22eec6003b90", "75480ca477454894678e22eec6003fca", "75480ca477454894678e22eec6004bef", "75480ca477454894678e22eec600528f", "75480ca477454894678e22eec6005e0b", "75480ca477454894678e22eec6006158", "75480ca477454894678e22eec6006161" ] }
Example error response for a bad request for too many UUIDs.
{ "error": "bad_request", "reason": "count parameter too large" }
Example error response for a bad request for too many UUIDs.
{ "error": "bad_request", "reason": "count parameter too large" }
Example error response for reader access is required for this request.
{ "error": "unauthorized", "reason": "_reader access is required for this request." }
Example error response for reader access is required for this request.
{ "error": "unauthorized", "reason": "_reader access is required for this request." }
Example error response for incorrect credentials.
{ "error": "unauthorized", "reason": "Name or password is incorrect." }
Example error response for incorrect credentials.
{ "error": "unauthorized", "reason": "Name or password is incorrect." }
Example error response when payment is required. For example, if the data quota of the plan is exceeded.
{ "error": "payment_required", "reason": "Payment required" }
Example error response when payment is required. For example, if the data quota of the plan is exceeded.
{ "error": "payment_required", "reason": "Payment required" }
Example error response for a forbidden request.
{ "error": "forbidden", "reason": "server_admin access is required for this request" }
Example error response for a forbidden request.
{ "error": "forbidden", "reason": "server_admin access is required for this request" }
Example error response for an account temporarily locked out.
{ "error": "forbidden", "reason": "Account is temporarily locked due to multiple authentication failures" }
Example error response for an account temporarily locked out.
{ "error": "forbidden", "reason": "Account is temporarily locked due to multiple authentication failures" }
Example error response for a not found request.
{ "error": "not_found", "reason": "missing" }
Example error response for a not found request.
{ "error": "not_found", "reason": "missing" }
Example error response for timeout reading client request.
{ "error": "request_timeout", "reason": "Request timeout" }
Example error response for timeout reading client request.
{ "error": "request_timeout", "reason": "Request timeout" }
Example error response for gone.
{ "error": "gone", "reason": "The requested resource is no longer located here, verify your DNS settings." }
Example error response for gone.
{ "error": "gone", "reason": "The requested resource is no longer located here, verify your DNS settings." }
Example error response for too many requests.
{ "error": "too_many_requests", "reason": "You've exceeded your rate limit allowance. Please try again later." }
Example error response for too many requests.
{ "error": "too_many_requests", "reason": "You've exceeded your rate limit allowance. Please try again later." }
Example error response for an unknown server error.
{ "error": "unknown_error", "reason": "function_clause", "ref": 2632214382 }
Example error response for an unknown server error.
{ "error": "unknown_error", "reason": "function_clause", "ref": 2632214382 }
Example error response for bad gateway.
{ "error": "bad_gateway", "reason": "Bad gateway" }
Example error response for bad gateway.
{ "error": "bad_gateway", "reason": "Bad gateway" }
Example error response for service unavailable.
{ "error": "service_unavailable", "reason": "Service unavailable" }
Example error response for service unavailable.
{ "error": "service_unavailable", "reason": "Service unavailable" }
Example error response for gateway timeout.
{ "error": "gateway_timeout", "reason": "Gateway timeout" }
Example error response for gateway timeout.
{ "error": "gateway_timeout", "reason": "Gateway timeout" }
Retrieve HTTP headers for one or more UUIDs
Retrieves the HTTP headers for one or more UUIDs.
HEAD /_uuids
Request
Custom Headers
Set a unique identifier to trace a request.
Possible values: length = 36, Value must match regular expression
^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-4[0-9a-fA-F]{3}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$
Response
Response Headers
Header for returning the compression codec used if an attachment's content_type is in list of compressible types.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Header returning the attachment size. If a compression codec is used, this value is the compressed size.
Possible values: 0 ≤ value ≤ 10485760
Header returning the server response date-time.
Possible values: 28 ≤ length ≤ 31, Value must match regular expression
^(Mon|Tue|Wed|Thu|Fri|Sat|Sun), [0-3]\d (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) \d{4} [0-2]\d:[0-5]\d:[0-6]\d ([+-]\d{4}|[A-Z]{2,3})$
Header returning the ETag for a resource.
Examples:Double quoted base64 encoded attachment digest.
"MEHlNHhicVt9efOzyvsz0Q=="
Double quoted document revision identifier.
"2-240fc93fad07083c338c7e0ea55791b3"
Double quoted local document tag.
"6APCCGX4B76OFFD5972MSBFHD"
Header returning the server information.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Header added by proxies through which the response was sent.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Header returning the Cloudant IAM action of the request.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^cloudantnosqldb\..+$
Header returning the Cloudant backend that handled the request.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Header returning the Cloudant class of the request.
Possible values: [
lookup
,query
,unlimited
,write
]Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Status Code
HTTP response for
/_uuids
style operations.HTTP error for bad request.
HTTP error for unauthorized.
HTTP error for payment required.
HTTP error for forbidden.
HTTP error for not found.
HTTP error for timeout reading client request.
HTTP error for gone.
HTTP error for too many requests.
HTTP error for internal server error.
HTTP error for bad gateway.
HTTP error for service unavailable.
HTTP error for gateway timeout.
Query a list of all database names in the instance
Query to retrieve a list of database names from the instance.
Query to retrieve a list of database names from the instance.
Query to retrieve a list of database names from the instance.
Query to retrieve a list of database names from the instance.
Query to retrieve a list of database names from the instance.
GET /_all_dbs
(cloudant *CloudantV1) GetAllDbs(getAllDbsOptions *GetAllDbsOptions) (result []string, response *core.DetailedResponse, err error)
(cloudant *CloudantV1) GetAllDbsWithContext(ctx context.Context, getAllDbsOptions *GetAllDbsOptions) (result []string, response *core.DetailedResponse, err error)
ServiceCall<List<String>> getAllDbs(GetAllDbsOptions getAllDbsOptions)
getAllDbs(params)
get_all_dbs(
self,
*,
descending: Optional[bool] = None,
end_key: Optional[str] = None,
limit: Optional[int] = None,
skip: Optional[int] = None,
start_key: Optional[str] = None,
**kwargs,
) -> DetailedResponse
Request
Instantiate the GetAllDbsOptions
struct and set the fields to provide parameter values for the GetAllDbs
method.
Use the GetAllDbsOptions.Builder
to create a GetAllDbsOptions
object that contains the parameter values for the getAllDbs
method.
Custom Headers
Set a unique identifier to trace a request.
Possible values: length = 36, Value must match regular expression
^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-4[0-9a-fA-F]{3}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$
Query Parameters
Query parameter to specify whether to return the documents in descending by key order.
Default:
false
Query parameter to specify to stop returning records when the specified key is reached. String representation of any JSON type that matches the key type emitted by the view function.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Query parameter to specify the number of returned documents to limit the result to.
Possible values: 0 ≤ value ≤ 4294967295
Query parameter to specify the number of records before starting to return the results.
Possible values: 0 ≤ value ≤ 9007199254740992
Default:
0
Query parameter to specify to start returning records from the specified key. String representation of any JSON type that matches the key type emitted by the view function.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
WithContext method only
A context.Context instance that you can use to specify a timeout for the operation or to cancel an in-flight request.
The GetAllDbs options.
Query parameter to specify whether to return the documents in descending by key order.
Default:
false
Query parameter to specify to stop returning records when the specified key is reached. String representation of any JSON type that matches the key type emitted by the view function.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
Query parameter to specify the number of returned documents to limit the result to.
Possible values: 0 ≤ value ≤ 4294967295
Query parameter to specify the number of records before starting to return the results.
Possible values: 0 ≤ value ≤ 9007199254740992
Default:
0
Query parameter to specify to start returning records from the specified key. String representation of any JSON type that matches the key type emitted by the view function.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
The getAllDbs options.
Query parameter to specify whether to return the documents in descending by key order.
Default:
false
Query parameter to specify to stop returning records when the specified key is reached. String representation of any JSON type that matches the key type emitted by the view function.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
Query parameter to specify the number of returned documents to limit the result to.
Possible values: 0 ≤ value ≤ 4294967295
Query parameter to specify the number of records before starting to return the results.
Possible values: 0 ≤ value ≤ 9007199254740992
Default:
0
Query parameter to specify to start returning records from the specified key. String representation of any JSON type that matches the key type emitted by the view function.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
parameters
Query parameter to specify whether to return the documents in descending by key order.
Default:
false
Query parameter to specify to stop returning records when the specified key is reached. String representation of any JSON type that matches the key type emitted by the view function.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
Query parameter to specify the number of returned documents to limit the result to.
Possible values: 0 ≤ value ≤ 4294967295
Query parameter to specify the number of records before starting to return the results.
Possible values: 0 ≤ value ≤ 9007199254740992
Default:
0
Query parameter to specify to start returning records from the specified key. String representation of any JSON type that matches the key type emitted by the view function.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
parameters
Query parameter to specify whether to return the documents in descending by key order.
Default:
false
Query parameter to specify to stop returning records when the specified key is reached. String representation of any JSON type that matches the key type emitted by the view function.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
Query parameter to specify the number of returned documents to limit the result to.
Possible values: 0 ≤ value ≤ 4294967295
Query parameter to specify the number of records before starting to return the results.
Possible values: 0 ≤ value ≤ 9007199254740992
Default:
0
Query parameter to specify to start returning records from the specified key. String representation of any JSON type that matches the key type emitted by the view function.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
curl -H "Authorization: Bearer $API_BEARER_TOKEN" -X GET "$SERVICE_URL/_all_dbs"
import ( "encoding/json" "fmt" "github.com/IBM/cloudant-go-sdk/cloudantv1" )
service, err := cloudantv1.NewCloudantV1( &cloudantv1.CloudantV1Options{}, ) if err != nil { panic(err) } getAllDbsOptions := service.NewGetAllDbsOptions() result, response, err := service.GetAllDbs(getAllDbsOptions) if err != nil { panic(err) } b, _ := json.MarshalIndent(result, "", " ") fmt.Println(string(b))
import com.ibm.cloud.cloudant.v1.Cloudant; import java.util.List;
Cloudant service = Cloudant.newInstance(); List<String> response = service.getAllDbs().execute().getResult(); System.out.println(response);
import { CloudantV1 } from '@ibm-cloud/cloudant'; const service = CloudantV1.newInstance({}); service.getAllDbs().then(response => { console.log(response.result); });
from ibmcloudant.cloudant_v1 import CloudantV1 service = CloudantV1.new_instance() response = service.get_all_dbs().get_result() print(response)
Response
Response type: []string
Response type: List<String>
Response type: string[]
Response type: List[str]
Schema for a list of database names.
Status Code
HTTP response for
/_all_dbs
style operations.HTTP error for bad request.
HTTP error for unauthorized.
HTTP error for payment required.
HTTP error for forbidden.
HTTP error for not found.
HTTP error for timeout reading client request.
HTTP error for gone.
HTTP error for too many requests.
HTTP error for internal server error.
HTTP error for bad gateway.
HTTP error for service unavailable.
HTTP error for gateway timeout.
Example AllDbs response.
[ "events", "orders", "products", "stores", "users" ]
Example AllDbs response.
[ "events", "orders", "products", "stores", "users" ]
Example error response for a bad request.
{ "error": "bad_request", "reason": "Bad request." }
Example error response for a bad request.
{ "error": "bad_request", "reason": "Bad request." }
Example error response for reader access is required for this request.
{ "error": "unauthorized", "reason": "_reader access is required for this request." }
Example error response for reader access is required for this request.
{ "error": "unauthorized", "reason": "_reader access is required for this request." }
Example error response for incorrect credentials.
{ "error": "unauthorized", "reason": "Name or password is incorrect." }
Example error response for incorrect credentials.
{ "error": "unauthorized", "reason": "Name or password is incorrect." }
Example error response when payment is required. For example, if the data quota of the plan is exceeded.
{ "error": "payment_required", "reason": "Payment required" }
Example error response when payment is required. For example, if the data quota of the plan is exceeded.
{ "error": "payment_required", "reason": "Payment required" }
Example error response for a forbidden request.
{ "error": "forbidden", "reason": "server_admin access is required for this request" }
Example error response for a forbidden request.
{ "error": "forbidden", "reason": "server_admin access is required for this request" }
Example error response for an account temporarily locked out.
{ "error": "forbidden", "reason": "Account is temporarily locked due to multiple authentication failures" }
Example error response for an account temporarily locked out.
{ "error": "forbidden", "reason": "Account is temporarily locked due to multiple authentication failures" }
Example error response for a not found request.
{ "error": "not_found", "reason": "missing" }
Example error response for a not found request.
{ "error": "not_found", "reason": "missing" }
Example error response for timeout reading client request.
{ "error": "request_timeout", "reason": "Request timeout" }
Example error response for timeout reading client request.
{ "error": "request_timeout", "reason": "Request timeout" }
Example error response for gone.
{ "error": "gone", "reason": "The requested resource is no longer located here, verify your DNS settings." }
Example error response for gone.
{ "error": "gone", "reason": "The requested resource is no longer located here, verify your DNS settings." }
Example error response for too many requests.
{ "error": "too_many_requests", "reason": "You've exceeded your rate limit allowance. Please try again later." }
Example error response for too many requests.
{ "error": "too_many_requests", "reason": "You've exceeded your rate limit allowance. Please try again later." }
Example error response for an unknown server error.
{ "error": "unknown_error", "reason": "function_clause", "ref": 2632214382 }
Example error response for an unknown server error.
{ "error": "unknown_error", "reason": "function_clause", "ref": 2632214382 }
Example error response for bad gateway.
{ "error": "bad_gateway", "reason": "Bad gateway" }
Example error response for bad gateway.
{ "error": "bad_gateway", "reason": "Bad gateway" }
Example error response for service unavailable.
{ "error": "service_unavailable", "reason": "Service unavailable" }
Example error response for service unavailable.
{ "error": "service_unavailable", "reason": "Service unavailable" }
Example error response for gateway timeout.
{ "error": "gateway_timeout", "reason": "Gateway timeout" }
Example error response for gateway timeout.
{ "error": "gateway_timeout", "reason": "Gateway timeout" }
Retrieve the HTTP headers for all database names in the instance
Retrieve the HTTP headers for the _all_dbs endpoint.
HEAD /_all_dbs
Request
Custom Headers
Set a unique identifier to trace a request.
Possible values: length = 36, Value must match regular expression
^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-4[0-9a-fA-F]{3}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$
Response
Response Headers
Header for returning the compression codec used if an attachment's content_type is in list of compressible types.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Header returning the attachment size. If a compression codec is used, this value is the compressed size.
Possible values: 0 ≤ value ≤ 10485760
Header returning the server response date-time.
Possible values: 28 ≤ length ≤ 31, Value must match regular expression
^(Mon|Tue|Wed|Thu|Fri|Sat|Sun), [0-3]\d (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) \d{4} [0-2]\d:[0-5]\d:[0-6]\d ([+-]\d{4}|[A-Z]{2,3})$
Header returning the ETag for a resource.
Examples:Double quoted base64 encoded attachment digest.
"MEHlNHhicVt9efOzyvsz0Q=="
Double quoted document revision identifier.
"2-240fc93fad07083c338c7e0ea55791b3"
Double quoted local document tag.
"6APCCGX4B76OFFD5972MSBFHD"
Header returning the server information.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Header added by proxies through which the response was sent.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Header returning the Cloudant IAM action of the request.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^cloudantnosqldb\..+$
Header returning the Cloudant backend that handled the request.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Header returning the Cloudant class of the request.
Possible values: [
lookup
,query
,unlimited
,write
]Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Status Code
HTTP response for
/_all_dbs
style operations.HTTP error for bad request.
HTTP error for unauthorized.
HTTP error for payment required.
HTTP error for forbidden.
HTTP error for not found.
HTTP error for timeout reading client request.
HTTP error for gone.
HTTP error for too many requests.
HTTP error for internal server error.
HTTP error for bad gateway.
HTTP error for service unavailable.
HTTP error for gateway timeout.
Query information about multiple databases
This operation enables you to request information about multiple databases in a single request, instead of issuing multiple GET /{db}
requests. It returns a list that contains an information object for each database specified in the request.
This operation enables you to request information about multiple databases in a single request, instead of issuing multiple GET /{db}
requests. It returns a list that contains an information object for each database specified in the request.
This operation enables you to request information about multiple databases in a single request, instead of issuing multiple GET /{db}
requests. It returns a list that contains an information object for each database specified in the request.
This operation enables you to request information about multiple databases in a single request, instead of issuing multiple GET /{db}
requests. It returns a list that contains an information object for each database specified in the request.
This operation enables you to request information about multiple databases in a single request, instead of issuing multiple GET /{db}
requests. It returns a list that contains an information object for each database specified in the request.
POST /_dbs_info
(cloudant *CloudantV1) PostDbsInfo(postDbsInfoOptions *PostDbsInfoOptions) (result []DbsInfoResult, response *core.DetailedResponse, err error)
(cloudant *CloudantV1) PostDbsInfoWithContext(ctx context.Context, postDbsInfoOptions *PostDbsInfoOptions) (result []DbsInfoResult, response *core.DetailedResponse, err error)
ServiceCall<List<DbsInfoResult>> postDbsInfo(PostDbsInfoOptions postDbsInfoOptions)
postDbsInfo(params)
post_dbs_info(
self,
keys: List[str],
**kwargs,
) -> DetailedResponse
Request
Instantiate the PostDbsInfoOptions
struct and set the fields to provide parameter values for the PostDbsInfo
method.
Use the PostDbsInfoOptions.Builder
to create a PostDbsInfoOptions
object that contains the parameter values for the postDbsInfo
method.
Custom Headers
Set a unique identifier to trace a request.
Possible values: length = 36, Value must match regular expression
^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-4[0-9a-fA-F]{3}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$
HTTP request body for postDbsInfo.
Example DbsInfoQuery request.
{
"keys": [
"products",
"users",
"orders"
]
}
A list of database names
Possible values: 0 ≤ number of items ≤ 100, 1 ≤ length ≤ 238, Value must match regular expression
^_dbs$|^_global_changes$|^_metadata$|^_nodes$|^_replicator$|^_users$|^[a-z][a-z0-9_$()+/-]*$
WithContext method only
A context.Context instance that you can use to specify a timeout for the operation or to cancel an in-flight request.
The PostDbsInfo options.
A list of database names.
Possible values: 0 ≤ number of items ≤ 100, 1 ≤ length ≤ 238, Value must match regular expression
/^_dbs$|^_global_changes$|^_metadata$|^_nodes$|^_replicator$|^_users$|^[a-z][a-z0-9_$()+\/-]*$/
Examples:[ "products", "users", "orders" ]
The postDbsInfo options.
A list of database names.
Possible values: 0 ≤ number of items ≤ 100, 1 ≤ length ≤ 238, Value must match regular expression
/^_dbs$|^_global_changes$|^_metadata$|^_nodes$|^_replicator$|^_users$|^[a-z][a-z0-9_$()+\/-]*$/
Examples:[ "products", "users", "orders" ]
parameters
A list of database names.
Possible values: 0 ≤ number of items ≤ 100, 1 ≤ length ≤ 238, Value must match regular expression
/^_dbs$|^_global_changes$|^_metadata$|^_nodes$|^_replicator$|^_users$|^[a-z][a-z0-9_$()+\/-]*$/
Examples:
parameters
A list of database names.
Possible values: 0 ≤ number of items ≤ 100, 1 ≤ length ≤ 238, Value must match regular expression
/^_dbs$|^_global_changes$|^_metadata$|^_nodes$|^_replicator$|^_users$|^[a-z][a-z0-9_$()+\/-]*$/
Examples:
curl -H "Authorization: Bearer $API_BEARER_TOKEN" -X POST "$SERVICE_URL/_dbs_info" -H "Content-Type: application/json" --data '{ "keys": ["products", "users", "orders"] }'
import ( "encoding/json" "fmt" "github.com/IBM/cloudant-go-sdk/cloudantv1" )
service, err := cloudantv1.NewCloudantV1( &cloudantv1.CloudantV1Options{}, ) if err != nil { panic(err) } postDbsInfoOptions := service.NewPostDbsInfoOptions([]string{ "products", "users", "orders", }) dbsInfoResult, response, err := service.PostDbsInfo(postDbsInfoOptions) if err != nil { panic(err) } b, _ := json.MarshalIndent(dbsInfoResult, "", " ") fmt.Println(string(b))
import com.ibm.cloud.cloudant.v1.Cloudant; import com.ibm.cloud.cloudant.v1.model.DbsInfoResult; import com.ibm.cloud.cloudant.v1.model.PostDbsInfoOptions; import java.util.Arrays; import java.util.List;
Cloudant service = Cloudant.newInstance(); PostDbsInfoOptions dbsInfoOptions = new PostDbsInfoOptions.Builder() .keys(Arrays.asList("products", "users", "orders")) .build(); List<DbsInfoResult> response = service.postDbsInfo(dbsInfoOptions).execute() .getResult(); System.out.println(response);
import { CloudantV1 } from '@ibm-cloud/cloudant'; const service = CloudantV1.newInstance({}); service.postDbsInfo({ keys: ['products', 'users', 'orders'] }).then(response => { console.log(response.result); });
from ibmcloudant.cloudant_v1 import CloudantV1 service = CloudantV1.new_instance() response = service.post_dbs_info( keys=['products', 'users', 'orders'] ).get_result() print(response)
Response
Response type: []DbsInfoResult
Response type: List<DbsInfoResult>
Response type: DbsInfoResult[]
Response type: List[DbsInfoResult]
Schema for a list of database information objects.
Schema for a database name.
Possible values: 1 ≤ length ≤ 238, Value must match regular expression
^_dbs$|^_global_changes$|^_metadata$|^_nodes$|^_replicator$|^_users$|^[a-z][a-z0-9_$()+/-]*$
The name of the error.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Schema for information about a database.
Status Code
HTTP response for postDbsInfo.
HTTP error for bad request.
HTTP error for unauthorized.
HTTP error for payment required.
HTTP error for forbidden.
HTTP error for not found.
HTTP error for timeout reading client request.
HTTP error for gone.
HTTP error for payload too large.
HTTP error for unsupported media type.
HTTP error for too many requests.
HTTP error for internal server error.
HTTP error for bad gateway.
HTTP error for service unavailable.
HTTP error for gateway timeout.
Example DbsInfoResults response.
[ { "info": { "cluster": { "n": 3, "q": 1, "r": 1, "w": 1 }, "compact_running": false, "db_name": "products", "disk_format_version": 8, "doc_count": 5, "doc_del_count": 1, "instance_start_time": "0", "partitioned_indexes": { "count": 4, "indexes": { "search": 2, "view": 2 }, "limit": 10 }, "props": { "partitioned": true }, "purge_seq": "8-g1AAAALReJyd0T8OgjAUBvCKjq6ewM2BQPyz6hUUeoAWSExDIDE4ewqvoNBLeAouwRmE58diQprY4PR16C9f-17KGJufpzFbxjLKL8khljs3SvNrLLLC8_zv2c2SIsVlRzC54DxUwhmyzW_WIy5XWldKTEYV9kjLPVFnSFsnEEn0Bob0LRIolErrUgk2lGuLBKrkjag1pK0TqMtm7MT53XivpRUsAEM8MSxjN5YJg5VgiDfRa-xmwVowxJHz-o9ufLhGPLRujJltrRofbhDYNGFq6gOYofZj", "sizes": { "active": 8887, "external": 1872, "file": 685680 }, "update_seq": "89-g1AAAALReJyd0T8OgjAUBvCKjq6ewM2BQPyz6hUUeoAWSExDIDE4ewqvoNBLeAouwRmE58diQprY4PR16C9f-17KGJufpzFbxjLKL8khljs3SvNrLLLC8_zv2c2SIsVlRzC54DxUwhmyzW_WIy5XWldKTEYV9kjLPVFnSFsnEEn0Bob0LRIolErrUgk2lGuLBKrkjag1pK0TqMtm7MT53XivpRUsAEM8MSxjN5YJg5VgiDfRa-xmwVowxJHz-o9ufLhGPLRujJltrRofbhDYNGFq6gOYofZj" }, "key": "products" }, { "info": { "cluster": { "n": 3, "q": 8, "r": 2, "w": 2 }, "compact_running": false, "db_name": "users", "disk_format_version": 8, "doc_count": 11, "doc_del_count": 0, "instance_start_time": "0", "props": {}, "purge_seq": "8-g1AAAALReJyd0T8OgjAUBvCKjq6ewM2BQPyz6hUUeoAWSExDIDE4ewqvoNBLeAouwRmE58diQprY4PR16C9f-17KGJufpzFbxjLKL8khljs3SvNrLLLC8_zv2c2SIsVlRzC54DxUwhmyzW_WIy5XWldKTEYV9kjLPVFnSFsnEEn0Bob0LRIolErrUgk2lGuLBKrkjag1pK0TqMtm7MT53XivpRUsAEM8MSxjN5YJg5VgiDfRa-xmwVowxJHz-o9ufLhGPLRujJltrRofbhDYNGFq6gOYofZj", "sizes": { "active": 67475, "external": 2339, "file": 3872387 }, "update_seq": "13-g1AAAALReJyd0T8OgjAUBvCKjq6ewM2BQPyz6hUUeoAWSExDIDE4ewqvoNBLeAouwRmE58diQprY4PR16C9f-17KGJufpzFbxjLKL8khljs3SvNrLLLC8_zv2c2SIsVlRzC54DxUwhmyzW_WIy5XWldKTEYV9kjLPVFnSFsnEEn0Bob0LRIolErrUgk2lGuLBKrkjag1pK0TqMtm7MT53XivpRUsAEM8MSxjN5YJg5VgiDfRa-xmwVowxJHz-o9ufLhGPLRujJltrRofbhDYNGFq6gOYofZj" }, "key": "users" }, { "info": { "cluster": { "n": 3, "q": 8, "r": 2, "w": 2 }, "compact_running": false, "db_name": "orders", "disk_format_version": 8, "doc_count": 5, "doc_del_count": 0, "instance_start_time": "0", "props": {}, "purge_seq": "8-g1AAAALReJyd0T8OgjAUBvCKjq6ewM2BQPyz6hUUeoAWSExDIDE4ewqvoNBLeAouwRmE58diQprY4PR16C9f-17KGJufpzFbxjLKL8khljs3SvNrLLLC8_zv2c2SIsVlRzC54DxUwhmyzW_WIy5XWldKTEYV9kjLPVFnSFsnEEn0Bob0LRIolErrUgk2lGuLBKrkjag1pK0TqMtm7MT53XivpRUsAEM8MSxjN5YJg5VgiDfRa-xmwVowxJHz-o9ufLhGPLRujJltrRofbhDYNGFq6gOYofZj", "sizes": { "active": 44475, "external": 1339, "file": 133970 }, "update_seq": "13-g1AAAALReJyd0T8OgjAUBvCKjq6ewM2BQPyz6hUUeoAWSExDIDE4ewqvoNBLeAouwRmE58diQprY4PR16C9f-17KGJufpzFbxjLKL8khljs3SvNrLLLC8_zv2c2SIsVlRzC54DxUwhmyzW_WIy5XWldKTEYV9kjLPVFnSFsnEEn0Bob0LRIolErrUgk2lGuLBKrkjag1pK0TqMtm7MT53XivpRUsAEM8MSxjN5YJg5VgiDfRa-xmwVowxJHz-o9ufLhGPLRujJltrRofbhDYNGFq6gOYofZj" }, "key": "orders" } ]
Example DbsInfoResults response.
[ { "info": { "cluster": { "n": 3, "q": 1, "r": 1, "w": 1 }, "compact_running": false, "db_name": "products", "disk_format_version": 8, "doc_count": 5, "doc_del_count": 1, "instance_start_time": "0", "partitioned_indexes": { "count": 4, "indexes": { "search": 2, "view": 2 }, "limit": 10 }, "props": { "partitioned": true }, "purge_seq": "8-g1AAAALReJyd0T8OgjAUBvCKjq6ewM2BQPyz6hUUeoAWSExDIDE4ewqvoNBLeAouwRmE58diQprY4PR16C9f-17KGJufpzFbxjLKL8khljs3SvNrLLLC8_zv2c2SIsVlRzC54DxUwhmyzW_WIy5XWldKTEYV9kjLPVFnSFsnEEn0Bob0LRIolErrUgk2lGuLBKrkjag1pK0TqMtm7MT53XivpRUsAEM8MSxjN5YJg5VgiDfRa-xmwVowxJHz-o9ufLhGPLRujJltrRofbhDYNGFq6gOYofZj", "sizes": { "active": 8887, "external": 1872, "file": 685680 }, "update_seq": "89-g1AAAALReJyd0T8OgjAUBvCKjq6ewM2BQPyz6hUUeoAWSExDIDE4ewqvoNBLeAouwRmE58diQprY4PR16C9f-17KGJufpzFbxjLKL8khljs3SvNrLLLC8_zv2c2SIsVlRzC54DxUwhmyzW_WIy5XWldKTEYV9kjLPVFnSFsnEEn0Bob0LRIolErrUgk2lGuLBKrkjag1pK0TqMtm7MT53XivpRUsAEM8MSxjN5YJg5VgiDfRa-xmwVowxJHz-o9ufLhGPLRujJltrRofbhDYNGFq6gOYofZj" }, "key": "products" }, { "info": { "cluster": { "n": 3, "q": 8, "r": 2, "w": 2 }, "compact_running": false, "db_name": "users", "disk_format_version": 8, "doc_count": 11, "doc_del_count": 0, "instance_start_time": "0", "props": {}, "purge_seq": "8-g1AAAALReJyd0T8OgjAUBvCKjq6ewM2BQPyz6hUUeoAWSExDIDE4ewqvoNBLeAouwRmE58diQprY4PR16C9f-17KGJufpzFbxjLKL8khljs3SvNrLLLC8_zv2c2SIsVlRzC54DxUwhmyzW_WIy5XWldKTEYV9kjLPVFnSFsnEEn0Bob0LRIolErrUgk2lGuLBKrkjag1pK0TqMtm7MT53XivpRUsAEM8MSxjN5YJg5VgiDfRa-xmwVowxJHz-o9ufLhGPLRujJltrRofbhDYNGFq6gOYofZj", "sizes": { "active": 67475, "external": 2339, "file": 3872387 }, "update_seq": "13-g1AAAALReJyd0T8OgjAUBvCKjq6ewM2BQPyz6hUUeoAWSExDIDE4ewqvoNBLeAouwRmE58diQprY4PR16C9f-17KGJufpzFbxjLKL8khljs3SvNrLLLC8_zv2c2SIsVlRzC54DxUwhmyzW_WIy5XWldKTEYV9kjLPVFnSFsnEEn0Bob0LRIolErrUgk2lGuLBKrkjag1pK0TqMtm7MT53XivpRUsAEM8MSxjN5YJg5VgiDfRa-xmwVowxJHz-o9ufLhGPLRujJltrRofbhDYNGFq6gOYofZj" }, "key": "users" }, { "info": { "cluster": { "n": 3, "q": 8, "r": 2, "w": 2 }, "compact_running": false, "db_name": "orders", "disk_format_version": 8, "doc_count": 5, "doc_del_count": 0, "instance_start_time": "0", "props": {}, "purge_seq": "8-g1AAAALReJyd0T8OgjAUBvCKjq6ewM2BQPyz6hUUeoAWSExDIDE4ewqvoNBLeAouwRmE58diQprY4PR16C9f-17KGJufpzFbxjLKL8khljs3SvNrLLLC8_zv2c2SIsVlRzC54DxUwhmyzW_WIy5XWldKTEYV9kjLPVFnSFsnEEn0Bob0LRIolErrUgk2lGuLBKrkjag1pK0TqMtm7MT53XivpRUsAEM8MSxjN5YJg5VgiDfRa-xmwVowxJHz-o9ufLhGPLRujJltrRofbhDYNGFq6gOYofZj", "sizes": { "active": 44475, "external": 1339, "file": 133970 }, "update_seq": "13-g1AAAALReJyd0T8OgjAUBvCKjq6ewM2BQPyz6hUUeoAWSExDIDE4ewqvoNBLeAouwRmE58diQprY4PR16C9f-17KGJufpzFbxjLKL8khljs3SvNrLLLC8_zv2c2SIsVlRzC54DxUwhmyzW_WIy5XWldKTEYV9kjLPVFnSFsnEEn0Bob0LRIolErrUgk2lGuLBKrkjag1pK0TqMtm7MT53XivpRUsAEM8MSxjN5YJg5VgiDfRa-xmwVowxJHz-o9ufLhGPLRujJltrRofbhDYNGFq6gOYofZj" }, "key": "orders" } ]
Example error response for a bad request missing keys.
{ "error": "bad_request", "reason": "`keys` member must exist." }
Example error response for a bad request missing keys.
{ "error": "bad_request", "reason": "`keys` member must exist." }
Example error response for reader access is required for this request.
{ "error": "unauthorized", "reason": "_reader access is required for this request." }
Example error response for reader access is required for this request.
{ "error": "unauthorized", "reason": "_reader access is required for this request." }
Example error response for incorrect credentials.
{ "error": "unauthorized", "reason": "Name or password is incorrect." }
Example error response for incorrect credentials.
{ "error": "unauthorized", "reason": "Name or password is incorrect." }
Example error response when payment is required. For example, if the data quota of the plan is exceeded.
{ "error": "payment_required", "reason": "Payment required" }
Example error response when payment is required. For example, if the data quota of the plan is exceeded.
{ "error": "payment_required", "reason": "Payment required" }
Example error response for a forbidden request.
{ "error": "forbidden", "reason": "server_admin access is required for this request" }
Example error response for a forbidden request.
{ "error": "forbidden", "reason": "server_admin access is required for this request" }
Example error response for an account temporarily locked out.
{ "error": "forbidden", "reason": "Account is temporarily locked due to multiple authentication failures" }
Example error response for an account temporarily locked out.
{ "error": "forbidden", "reason": "Account is temporarily locked due to multiple authentication failures" }
Example error response for a not found request.
{ "error": "not_found", "reason": "missing" }
Example error response for a not found request.
{ "error": "not_found", "reason": "missing" }
Example error response for timeout reading client request.
{ "error": "request_timeout", "reason": "Request timeout" }
Example error response for timeout reading client request.
{ "error": "request_timeout", "reason": "Request timeout" }
Example error response for gone.
{ "error": "gone", "reason": "The requested resource is no longer located here, verify your DNS settings." }
Example error response for gone.
{ "error": "gone", "reason": "The requested resource is no longer located here, verify your DNS settings." }
Example error response for a request size that exceeds the limit.
{ "error": "too_large", "reason": "the request entity is too large" }
Example error response for a request size that exceeds the limit.
{ "error": "too_large", "reason": "the request entity is too large" }
Example error response for unsupported media type.
{ "error": "bad_content_type", "reason": "Content-Type must be application/json" }
Example error response for unsupported media type.
{ "error": "bad_content_type", "reason": "Content-Type must be application/json" }
Example error response for too many requests.
{ "error": "too_many_requests", "reason": "You've exceeded your rate limit allowance. Please try again later." }
Example error response for too many requests.
{ "error": "too_many_requests", "reason": "You've exceeded your rate limit allowance. Please try again later." }
Example error response for an unknown server error.
{ "error": "unknown_error", "reason": "function_clause", "ref": 2632214382 }
Example error response for an unknown server error.
{ "error": "unknown_error", "reason": "function_clause", "ref": 2632214382 }
Example error response for bad gateway.
{ "error": "bad_gateway", "reason": "Bad gateway" }
Example error response for bad gateway.
{ "error": "bad_gateway", "reason": "Bad gateway" }
Example error response for service unavailable.
{ "error": "service_unavailable", "reason": "Service unavailable" }
Example error response for service unavailable.
{ "error": "service_unavailable", "reason": "Service unavailable" }
Example error response for gateway timeout.
{ "error": "gateway_timeout", "reason": "Gateway timeout" }
Example error response for gateway timeout.
{ "error": "gateway_timeout", "reason": "Gateway timeout" }
Delete a database
Deletes the specified database and all documents and attachments contained within it. To avoid deleting a database, the server responds with a 400 HTTP status code when the request URL includes a ?rev=
parameter. This response suggests that a user wanted to delete a document but forgot to add the document ID to the URL.
Deletes the specified database and all documents and attachments contained within it. To avoid deleting a database, the server responds with a 400 HTTP status code when the request URL includes a ?rev=
parameter. This response suggests that a user wanted to delete a document but forgot to add the document ID to the URL.
Deletes the specified database and all documents and attachments contained within it. To avoid deleting a database, the server responds with a 400 HTTP status code when the request URL includes a ?rev=
parameter. This response suggests that a user wanted to delete a document but forgot to add the document ID to the URL.
Deletes the specified database and all documents and attachments contained within it. To avoid deleting a database, the server responds with a 400 HTTP status code when the request URL includes a ?rev=
parameter. This response suggests that a user wanted to delete a document but forgot to add the document ID to the URL.
Deletes the specified database and all documents and attachments contained within it. To avoid deleting a database, the server responds with a 400 HTTP status code when the request URL includes a ?rev=
parameter. This response suggests that a user wanted to delete a document but forgot to add the document ID to the URL.
DELETE /{db}
(cloudant *CloudantV1) DeleteDatabase(deleteDatabaseOptions *DeleteDatabaseOptions) (result *Ok, response *core.DetailedResponse, err error)
(cloudant *CloudantV1) DeleteDatabaseWithContext(ctx context.Context, deleteDatabaseOptions *DeleteDatabaseOptions) (result *Ok, response *core.DetailedResponse, err error)
ServiceCall<Ok> deleteDatabase(DeleteDatabaseOptions deleteDatabaseOptions)
deleteDatabase(params)
delete_database(
self,
db: str,
**kwargs,
) -> DetailedResponse
Request
Instantiate the DeleteDatabaseOptions
struct and set the fields to provide parameter values for the DeleteDatabase
method.
Use the DeleteDatabaseOptions.Builder
to create a DeleteDatabaseOptions
object that contains the parameter values for the deleteDatabase
method.
Custom Headers
Set a unique identifier to trace a request.
Possible values: length = 36, Value must match regular expression
^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-4[0-9a-fA-F]{3}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$
Path Parameters
Path parameter to specify the database name.
Possible values: 1 ≤ length ≤ 238, Value must match regular expression
^_dbs$|^_global_changes$|^_metadata$|^_nodes$|^_replicator$|^_users$|^[a-z][a-z0-9_$()+/-]*$
WithContext method only
A context.Context instance that you can use to specify a timeout for the operation or to cancel an in-flight request.
The DeleteDatabase options.
Path parameter to specify the database name.
Possible values: 1 ≤ length ≤ 238, Value must match regular expression
/^_dbs$|^_global_changes$|^_metadata$|^_nodes$|^_replicator$|^_users$|^[a-z][a-z0-9_$()+\/-]*$/
The deleteDatabase options.
Path parameter to specify the database name.
Possible values: 1 ≤ length ≤ 238, Value must match regular expression
/^_dbs$|^_global_changes$|^_metadata$|^_nodes$|^_replicator$|^_users$|^[a-z][a-z0-9_$()+\/-]*$/
parameters
Path parameter to specify the database name.
Possible values: 1 ≤ length ≤ 238, Value must match regular expression
/^_dbs$|^_global_changes$|^_metadata$|^_nodes$|^_replicator$|^_users$|^[a-z][a-z0-9_$()+\/-]*$/
parameters
Path parameter to specify the database name.
Possible values: 1 ≤ length ≤ 238, Value must match regular expression
/^_dbs$|^_global_changes$|^_metadata$|^_nodes$|^_replicator$|^_users$|^[a-z][a-z0-9_$()+\/-]*$/
curl -H "Authorization: Bearer $API_BEARER_TOKEN" -X DELETE "$SERVICE_URL/$DB_NAME"
import ( "encoding/json" "fmt" "github.com/IBM/cloudant-go-sdk/cloudantv1" )
service, err := cloudantv1.NewCloudantV1( &cloudantv1.CloudantV1Options{}, ) if err != nil { panic(err) } deleteDatabaseOptions := service.NewDeleteDatabaseOptions( "<db-name>", ) ok, response, err := service.DeleteDatabase(deleteDatabaseOptions) if err != nil { panic(err) } b, _ := json.MarshalIndent(ok, "", " ") fmt.Println(string(b))
import com.ibm.cloud.cloudant.v1.Cloudant; import com.ibm.cloud.cloudant.v1.model.DeleteDatabaseOptions; import com.ibm.cloud.cloudant.v1.model.Ok;
Cloudant service = Cloudant.newInstance(); DeleteDatabaseOptions databaseOptions = new DeleteDatabaseOptions.Builder() .db("<db-name>") .build(); Ok response = service.deleteDatabase(databaseOptions).execute() .getResult(); System.out.println(response);
import { CloudantV1 } from '@ibm-cloud/cloudant'; const service = CloudantV1.newInstance({}); service.deleteDatabase({db: '<db-name>'}).then(response => { console.log(response.result); });
from ibmcloudant.cloudant_v1 import CloudantV1 service = CloudantV1.new_instance() response = service.delete_database(db='<db-name>').get_result() print(response)
Response
Schema for an OK result.
ok
Schema for an OK result.
ok.
Schema for an OK result.
ok.
Schema for an OK result.
ok.
Schema for an OK result.
ok.
Status Code
HTTP response for Ok operations.
HTTP response for Ok operations.
HTTP error for bad request.
HTTP error for unauthorized.
HTTP error for payment required.
HTTP error for forbidden.
HTTP error for not found.
HTTP error for timeout reading client request.
HTTP error for gone.
HTTP error for too many requests.
HTTP error for internal server error.
HTTP error for bad gateway.
HTTP error for service unavailable.
HTTP error for gateway timeout.
Example Ok response.
{ "ok": true }
Example Ok response.
{ "ok": true }
Example Ok response.
{ "ok": true }
Example Ok response.
{ "ok": true }
Example error response for a bad request deleting a database with a document rev.
{ "error": "bad_request", "reason": "You tried to DELETE a database with a ?=rev parameter. Did you mean to DELETE a document instead?" }
Example error response for a bad request deleting a database with a document rev.
{ "error": "bad_request", "reason": "You tried to DELETE a database with a ?=rev parameter. Did you mean to DELETE a document instead?" }
Example error response for reader access is required for this request.
{ "error": "unauthorized", "reason": "_reader access is required for this request." }
Example error response for reader access is required for this request.
{ "error": "unauthorized", "reason": "_reader access is required for this request." }
Example error response for incorrect credentials.
{ "error": "unauthorized", "reason": "Name or password is incorrect." }
Example error response for incorrect credentials.
{ "error": "unauthorized", "reason": "Name or password is incorrect." }
Example error response when payment is required. For example, if the data quota of the plan is exceeded.
{ "error": "payment_required", "reason": "Payment required" }
Example error response when payment is required. For example, if the data quota of the plan is exceeded.
{ "error": "payment_required", "reason": "Payment required" }
Example error response for a forbidden request.
{ "error": "forbidden", "reason": "server_admin access is required for this request" }
Example error response for a forbidden request.
{ "error": "forbidden", "reason": "server_admin access is required for this request" }
Example error response for an account temporarily locked out.
{ "error": "forbidden", "reason": "Account is temporarily locked due to multiple authentication failures" }
Example error response for an account temporarily locked out.
{ "error": "forbidden", "reason": "Account is temporarily locked due to multiple authentication failures" }
Example error response for a not found request.
{ "error": "not_found", "reason": "missing" }
Example error response for a not found request.
{ "error": "not_found", "reason": "missing" }
Example error response for timeout reading client request.
{ "error": "request_timeout", "reason": "Request timeout" }
Example error response for timeout reading client request.
{ "error": "request_timeout", "reason": "Request timeout" }
Example error response for gone.
{ "error": "gone", "reason": "The requested resource is no longer located here, verify your DNS settings." }
Example error response for gone.
{ "error": "gone", "reason": "The requested resource is no longer located here, verify your DNS settings." }
Example error response for too many requests.
{ "error": "too_many_requests", "reason": "You've exceeded your rate limit allowance. Please try again later." }
Example error response for too many requests.
{ "error": "too_many_requests", "reason": "You've exceeded your rate limit allowance. Please try again later." }
Example error response for an unknown server error.
{ "error": "unknown_error", "reason": "function_clause", "ref": 2632214382 }
Example error response for an unknown server error.
{ "error": "unknown_error", "reason": "function_clause", "ref": 2632214382 }
Example error response for bad gateway.
{ "error": "bad_gateway", "reason": "Bad gateway" }
Example error response for bad gateway.
{ "error": "bad_gateway", "reason": "Bad gateway" }
Example error response for service unavailable.
{ "error": "service_unavailable", "reason": "Service unavailable" }
Example error response for service unavailable.
{ "error": "service_unavailable", "reason": "Service unavailable" }
Example error response for gateway timeout.
{ "error": "gateway_timeout", "reason": "Gateway timeout" }
Example error response for gateway timeout.
{ "error": "gateway_timeout", "reason": "Gateway timeout" }
Retrieve information about a database
Retrieve detailed information about the database.
Retrieve detailed information about the database.
Retrieve detailed information about the database.
Retrieve detailed information about the database.
Retrieve detailed information about the database.
GET /{db}
(cloudant *CloudantV1) GetDatabaseInformation(getDatabaseInformationOptions *GetDatabaseInformationOptions) (result *DatabaseInformation, response *core.DetailedResponse, err error)
(cloudant *CloudantV1) GetDatabaseInformationWithContext(ctx context.Context, getDatabaseInformationOptions *GetDatabaseInformationOptions) (result *DatabaseInformation, response *core.DetailedResponse, err error)
ServiceCall<DatabaseInformation> getDatabaseInformation(GetDatabaseInformationOptions getDatabaseInformationOptions)
getDatabaseInformation(params)
get_database_information(
self,
db: str,
**kwargs,
) -> DetailedResponse
Request
Instantiate the GetDatabaseInformationOptions
struct and set the fields to provide parameter values for the GetDatabaseInformation
method.
Use the GetDatabaseInformationOptions.Builder
to create a GetDatabaseInformationOptions
object that contains the parameter values for the getDatabaseInformation
method.
Custom Headers
Set a unique identifier to trace a request.
Possible values: length = 36, Value must match regular expression
^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-4[0-9a-fA-F]{3}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$
Path Parameters
Path parameter to specify the database name.
Possible values: 1 ≤ length ≤ 238, Value must match regular expression
^_dbs$|^_global_changes$|^_metadata$|^_nodes$|^_replicator$|^_users$|^[a-z][a-z0-9_$()+/-]*$
WithContext method only
A context.Context instance that you can use to specify a timeout for the operation or to cancel an in-flight request.
The GetDatabaseInformation options.
Path parameter to specify the database name.
Possible values: 1 ≤ length ≤ 238, Value must match regular expression
/^_dbs$|^_global_changes$|^_metadata$|^_nodes$|^_replicator$|^_users$|^[a-z][a-z0-9_$()+\/-]*$/
The getDatabaseInformation options.
Path parameter to specify the database name.
Possible values: 1 ≤ length ≤ 238, Value must match regular expression
/^_dbs$|^_global_changes$|^_metadata$|^_nodes$|^_replicator$|^_users$|^[a-z][a-z0-9_$()+\/-]*$/
parameters
Path parameter to specify the database name.
Possible values: 1 ≤ length ≤ 238, Value must match regular expression
/^_dbs$|^_global_changes$|^_metadata$|^_nodes$|^_replicator$|^_users$|^[a-z][a-z0-9_$()+\/-]*$/
parameters
Path parameter to specify the database name.
Possible values: 1 ≤ length ≤ 238, Value must match regular expression
/^_dbs$|^_global_changes$|^_metadata$|^_nodes$|^_replicator$|^_users$|^[a-z][a-z0-9_$()+\/-]*$/
curl -H "Authorization: Bearer $API_BEARER_TOKEN" -X GET "$SERVICE_URL/products"
import ( "encoding/json" "fmt" "github.com/IBM/cloudant-go-sdk/cloudantv1" )
service, err := cloudantv1.NewCloudantV1( &cloudantv1.CloudantV1Options{}, ) if err != nil { panic(err) } getDatabaseInformationOptions := service.NewGetDatabaseInformationOptions( "products", ) databaseInformation, response, err := service.GetDatabaseInformation(getDatabaseInformationOptions) if err != nil { panic(err) } b, _ := json.MarshalIndent(databaseInformation, "", " ") fmt.Println(string(b))
import com.ibm.cloud.cloudant.v1.Cloudant; import com.ibm.cloud.cloudant.v1.model.DatabaseInformation; import com.ibm.cloud.cloudant.v1.model.GetDatabaseInformationOptions;
Cloudant service = Cloudant.newInstance(); GetDatabaseInformationOptions databaseInfoOptions = new GetDatabaseInformationOptions.Builder() .db("products") .build(); DatabaseInformation response = service.getDatabaseInformation(databaseInfoOptions).execute() .getResult(); System.out.println(response);
import { CloudantV1 } from '@ibm-cloud/cloudant'; const service = CloudantV1.newInstance({}); service.getDatabaseInformation({db: 'products'}).then(response => { console.log(response.result); });
from ibmcloudant.cloudant_v1 import CloudantV1 service = CloudantV1.new_instance() response = service.get_database_information(db='products').get_result() print(response)
Response
Schema for information about a database.
Schema for database cluster information.
True if the database compaction routine is operating on this database.
Schema for a database name.
Possible values: 1 ≤ length ≤ 238, Value must match regular expression
^_dbs$|^_global_changes$|^_metadata$|^_nodes$|^_replicator$|^_users$|^[a-z][a-z0-9_$()+/-]*$
The version of the physical format used for the data when it is stored on disk.
Possible values: 1 ≤ value ≤ 9007199254740992
A count of the documents in the specified database.
Possible values: 0 ≤ value ≤ 9007199254740992
Number of deleted documents
Possible values: 0 ≤ value ≤ 9007199254740992
An opaque string to detect whether a database has been recreated. The field name is for compatibility with old replicator versions. Do not use the value to infer timing infromation. Typically only used by replicators.
Possible values: 1 ≤ length ≤ 10, Value must match regular expression
^\d+$
Schema for database properties.
An opaque string that describes the purge state of the database. Do not rely on this string for counting the number of purge operations.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^0|([1-9]\d*-[A-Za-z0-9-_]+)|now$
Schema for size information of content.
An opaque string that describes the state of the database. Do not rely on this string for counting the number of updates.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^0|([1-9]\d*-[A-Za-z0-9-_]+)|now$
An opaque string that describes the committed state of the database.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^0|([1-9]\d*-[A-Za-z0-9-_]+)|now$
An opaque string that describes the compaction state of the database.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^0|([1-9]\d*-[A-Za-z0-9-_]+)|now$
The engine used for the database.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Information about database's partitioned indexes.
The UUID of the database.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Schema for information about a database.
Schema for database cluster information.
- Cluster
Schema for the number of replicas of a database in a cluster. The cluster is using the default value and it cannot be changed by the user.
Possible values: value = 3
Schema for the number of shards in a database. Each shard is a partition of the hash value range.
Possible values: 1 ≤ value ≤ 120
Read quorum. The number of consistent copies of a document that need to be read before a successful reply.
Possible values: 1 ≤ value ≤ 3
Write quorum. The number of copies of a document that need to be written before a successful reply.
Possible values: 1 ≤ value ≤ 3
An opaque string that describes the committed state of the database.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^0|([1-9]\\d*-[A-Za-z0-9-_]+)|now$/
True if the database compaction routine is operating on this database.
An opaque string that describes the compaction state of the database.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^0|([1-9]\\d*-[A-Za-z0-9-_]+)|now$/
Schema for a database name.
Possible values: 1 ≤ length ≤ 238, Value must match regular expression
/^_dbs$|^_global_changes$|^_metadata$|^_nodes$|^_replicator$|^_users$|^[a-z][a-z0-9_$()+\/-]*$/
The version of the physical format used for the data when it is stored on disk.
Possible values: 1 ≤ value ≤ 9007199254740992
A count of the documents in the specified database.
Possible values: 0 ≤ value ≤ 9007199254740992
Number of deleted documents.
Possible values: 0 ≤ value ≤ 9007199254740992
The engine used for the database.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
An opaque string to detect whether a database has been recreated. The field name is for compatibility with old replicator versions. Do not use the value to infer timing infromation. Typically only used by replicators.
Possible values: 1 ≤ length ≤ 10, Value must match regular expression
/^\\d+$/
Information about database's partitioned indexes.
- PartitionedIndexes
Total number of partitioned indexes in the database.
Possible values: 0 ≤ value ≤ 10
Number of partitioned indexes by type.
- Indexes
Number of partitioned indexes of search type.
Possible values: 0 ≤ value ≤ 10
Number of partitioned indexes of view type.
Possible values: 0 ≤ value ≤ 10
Maximum allowed number of partitioned indexes in the database.
Possible values: 0 ≤ value ≤ 10
Schema for database properties.
- Props
The value is
true
for a partitioned database.
Schema for size information of content.
- Sizes
The active size of the content, in bytes.
Possible values: 0 ≤ value ≤ 9007199254740992
The total uncompressed size of the content, in bytes.
Possible values: 0 ≤ value ≤ 9007199254740992
The total size of the content as stored on disk, in bytes.
Possible values: 0 ≤ value ≤ 9007199254740992
An opaque string that describes the state of the database. Do not rely on this string for counting the number of updates.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^0|([1-9]\\d*-[A-Za-z0-9-_]+)|now$/
The UUID of the database.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
Schema for information about a database.
Schema for database cluster information.
- cluster
Schema for the number of replicas of a database in a cluster. The cluster is using the default value and it cannot be changed by the user.
Possible values: value = 3
Schema for the number of shards in a database. Each shard is a partition of the hash value range.
Possible values: 1 ≤ value ≤ 120
Read quorum. The number of consistent copies of a document that need to be read before a successful reply.
Possible values: 1 ≤ value ≤ 3
Write quorum. The number of copies of a document that need to be written before a successful reply.
Possible values: 1 ≤ value ≤ 3
An opaque string that describes the committed state of the database.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^0|([1-9]\\d*-[A-Za-z0-9-_]+)|now$/
True if the database compaction routine is operating on this database.
An opaque string that describes the compaction state of the database.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^0|([1-9]\\d*-[A-Za-z0-9-_]+)|now$/
Schema for a database name.
Possible values: 1 ≤ length ≤ 238, Value must match regular expression
/^_dbs$|^_global_changes$|^_metadata$|^_nodes$|^_replicator$|^_users$|^[a-z][a-z0-9_$()+\/-]*$/
The version of the physical format used for the data when it is stored on disk.
Possible values: 1 ≤ value ≤ 9007199254740992
A count of the documents in the specified database.
Possible values: 0 ≤ value ≤ 9007199254740992
Number of deleted documents.
Possible values: 0 ≤ value ≤ 9007199254740992
The engine used for the database.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
An opaque string to detect whether a database has been recreated. The field name is for compatibility with old replicator versions. Do not use the value to infer timing infromation. Typically only used by replicators.
Possible values: 1 ≤ length ≤ 10, Value must match regular expression
/^\\d+$/
Information about database's partitioned indexes.
- partitionedIndexes
Total number of partitioned indexes in the database.
Possible values: 0 ≤ value ≤ 10
Number of partitioned indexes by type.
- indexes
Number of partitioned indexes of search type.
Possible values: 0 ≤ value ≤ 10
Number of partitioned indexes of view type.
Possible values: 0 ≤ value ≤ 10
Maximum allowed number of partitioned indexes in the database.
Possible values: 0 ≤ value ≤ 10
Schema for database properties.
- props
The value is
true
for a partitioned database.
Schema for size information of content.
- sizes
The active size of the content, in bytes.
Possible values: 0 ≤ value ≤ 9007199254740992
The total uncompressed size of the content, in bytes.
Possible values: 0 ≤ value ≤ 9007199254740992
The total size of the content as stored on disk, in bytes.
Possible values: 0 ≤ value ≤ 9007199254740992
An opaque string that describes the state of the database. Do not rely on this string for counting the number of updates.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^0|([1-9]\\d*-[A-Za-z0-9-_]+)|now$/
The UUID of the database.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
Schema for information about a database.
Schema for database cluster information.
- cluster
Schema for the number of replicas of a database in a cluster. The cluster is using the default value and it cannot be changed by the user.
Possible values: value = 3
Schema for the number of shards in a database. Each shard is a partition of the hash value range.
Possible values: 1 ≤ value ≤ 120
Read quorum. The number of consistent copies of a document that need to be read before a successful reply.
Possible values: 1 ≤ value ≤ 3
Write quorum. The number of copies of a document that need to be written before a successful reply.
Possible values: 1 ≤ value ≤ 3
An opaque string that describes the committed state of the database.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^0|([1-9]\\d*-[A-Za-z0-9-_]+)|now$/
True if the database compaction routine is operating on this database.
An opaque string that describes the compaction state of the database.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^0|([1-9]\\d*-[A-Za-z0-9-_]+)|now$/
Schema for a database name.
Possible values: 1 ≤ length ≤ 238, Value must match regular expression
/^_dbs$|^_global_changes$|^_metadata$|^_nodes$|^_replicator$|^_users$|^[a-z][a-z0-9_$()+\/-]*$/
The version of the physical format used for the data when it is stored on disk.
Possible values: 1 ≤ value ≤ 9007199254740992
A count of the documents in the specified database.
Possible values: 0 ≤ value ≤ 9007199254740992
Number of deleted documents.
Possible values: 0 ≤ value ≤ 9007199254740992
The engine used for the database.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
An opaque string to detect whether a database has been recreated. The field name is for compatibility with old replicator versions. Do not use the value to infer timing infromation. Typically only used by replicators.
Possible values: 1 ≤ length ≤ 10, Value must match regular expression
/^\\d+$/
Information about database's partitioned indexes.
- partitionedIndexes
Total number of partitioned indexes in the database.
Possible values: 0 ≤ value ≤ 10
Number of partitioned indexes by type.
- indexes
Number of partitioned indexes of search type.
Possible values: 0 ≤ value ≤ 10
Number of partitioned indexes of view type.
Possible values: 0 ≤ value ≤ 10
Maximum allowed number of partitioned indexes in the database.
Possible values: 0 ≤ value ≤ 10
Schema for database properties.
- props
The value is
true
for a partitioned database.
Schema for size information of content.
- sizes
The active size of the content, in bytes.
Possible values: 0 ≤ value ≤ 9007199254740992
The total uncompressed size of the content, in bytes.
Possible values: 0 ≤ value ≤ 9007199254740992
The total size of the content as stored on disk, in bytes.
Possible values: 0 ≤ value ≤ 9007199254740992
An opaque string that describes the state of the database. Do not rely on this string for counting the number of updates.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^0|([1-9]\\d*-[A-Za-z0-9-_]+)|now$/
The UUID of the database.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
Schema for information about a database.
Schema for database cluster information.
- cluster
Schema for the number of replicas of a database in a cluster. The cluster is using the default value and it cannot be changed by the user.
Possible values: value = 3
Schema for the number of shards in a database. Each shard is a partition of the hash value range.
Possible values: 1 ≤ value ≤ 120
Read quorum. The number of consistent copies of a document that need to be read before a successful reply.
Possible values: 1 ≤ value ≤ 3
Write quorum. The number of copies of a document that need to be written before a successful reply.
Possible values: 1 ≤ value ≤ 3
An opaque string that describes the committed state of the database.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^0|([1-9]\\d*-[A-Za-z0-9-_]+)|now$/
True if the database compaction routine is operating on this database.
An opaque string that describes the compaction state of the database.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^0|([1-9]\\d*-[A-Za-z0-9-_]+)|now$/
Schema for a database name.
Possible values: 1 ≤ length ≤ 238, Value must match regular expression
/^_dbs$|^_global_changes$|^_metadata$|^_nodes$|^_replicator$|^_users$|^[a-z][a-z0-9_$()+\/-]*$/
The version of the physical format used for the data when it is stored on disk.
Possible values: 1 ≤ value ≤ 9007199254740992
A count of the documents in the specified database.
Possible values: 0 ≤ value ≤ 9007199254740992
Number of deleted documents.
Possible values: 0 ≤ value ≤ 9007199254740992
The engine used for the database.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
An opaque string to detect whether a database has been recreated. The field name is for compatibility with old replicator versions. Do not use the value to infer timing infromation. Typically only used by replicators.
Possible values: 1 ≤ length ≤ 10, Value must match regular expression
/^\\d+$/
Information about database's partitioned indexes.
- partitioned_indexes
Total number of partitioned indexes in the database.
Possible values: 0 ≤ value ≤ 10
Number of partitioned indexes by type.
- indexes
Number of partitioned indexes of search type.
Possible values: 0 ≤ value ≤ 10
Number of partitioned indexes of view type.
Possible values: 0 ≤ value ≤ 10
Maximum allowed number of partitioned indexes in the database.
Possible values: 0 ≤ value ≤ 10
Schema for database properties.
- props
The value is
true
for a partitioned database.
Schema for size information of content.
- sizes
The active size of the content, in bytes.
Possible values: 0 ≤ value ≤ 9007199254740992
The total uncompressed size of the content, in bytes.
Possible values: 0 ≤ value ≤ 9007199254740992
The total size of the content as stored on disk, in bytes.
Possible values: 0 ≤ value ≤ 9007199254740992
An opaque string that describes the state of the database. Do not rely on this string for counting the number of updates.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^0|([1-9]\\d*-[A-Za-z0-9-_]+)|now$/
The UUID of the database.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
Status Code
HTTP response for DatabaseInformation.
HTTP error for bad request.
HTTP error for unauthorized.
HTTP error for payment required.
HTTP error for forbidden.
HTTP error for not found.
HTTP error for timeout reading client request.
HTTP error for gone.
HTTP error for too many requests.
HTTP error for internal server error.
HTTP error for bad gateway.
HTTP error for service unavailable.
HTTP error for gateway timeout.
Example DatabaseInformation response.
{ "cluster": { "n": 3, "q": 8, "r": 2, "w": 2 }, "compact_running": false, "db_name": "products", "disk_format_version": 8, "doc_count": 5, "doc_del_count": 1, "instance_start_time": "0", "partitioned_indexes": { "count": 4, "indexes": { "search": 2, "view": 2 }, "limit": 10 }, "props": { "partitioned": true }, "purge_seq": "8-g1AAAALReJyd0T8OgjAUBvCKjq6ewM2BQPyz6hUUeoAWSExDIDE4ewqvoNBLeAouwRmE58diQprY4PR16C9f-17KGJufpzFbxjLKL8khljs3SvNrLLLC8_zv2c2SIsVlRzC54DxUwhmyzW_WIy5XWldKTEYV9kjLPVFnSFsnEEn0Bob0LRIolErrUgk2lGuLBKrkjag1pK0TqMtm7MT53XivpRUsAEM8MSxjN5YJg5VgiDfRa-xmwVowxJHz-o9ufLhGPLRujJltrRofbhDYNGFq6gOYofZj", "sizes": { "active": 8887, "external": 1872, "file": 685680 }, "update_seq": "89-g1AAAAIjeJzLYWBg4MhgTmHQTklKzi9KdUhJMtbLzCtJTS9KLMnMzysuSS0uMTAw1EvOyS9NScwr0ctLLckBamLKYwGSDA-A1H8gyErkRDXFkBRTDkBMuY9hihEppiyAmLI_K1GQAh81QEyZn5XIRZaPkhKAZFI9tjAh0jdJDiAT4rGZQKRPkhRAJtiDTRAkyxeJDEnyEAdkAQCgLLsf" }
Example DatabaseInformation response.
{ "cluster": { "n": 3, "q": 8, "r": 2, "w": 2 }, "compact_running": false, "db_name": "products", "disk_format_version": 8, "doc_count": 5, "doc_del_count": 1, "instance_start_time": "0", "partitioned_indexes": { "count": 4, "indexes": { "search": 2, "view": 2 }, "limit": 10 }, "props": { "partitioned": true }, "purge_seq": "8-g1AAAALReJyd0T8OgjAUBvCKjq6ewM2BQPyz6hUUeoAWSExDIDE4ewqvoNBLeAouwRmE58diQprY4PR16C9f-17KGJufpzFbxjLKL8khljs3SvNrLLLC8_zv2c2SIsVlRzC54DxUwhmyzW_WIy5XWldKTEYV9kjLPVFnSFsnEEn0Bob0LRIolErrUgk2lGuLBKrkjag1pK0TqMtm7MT53XivpRUsAEM8MSxjN5YJg5VgiDfRa-xmwVowxJHz-o9ufLhGPLRujJltrRofbhDYNGFq6gOYofZj", "sizes": { "active": 8887, "external": 1872, "file": 685680 }, "update_seq": "89-g1AAAAIjeJzLYWBg4MhgTmHQTklKzi9KdUhJMtbLzCtJTS9KLMnMzysuSS0uMTAw1EvOyS9NScwr0ctLLckBamLKYwGSDA-A1H8gyErkRDXFkBRTDkBMuY9hihEppiyAmLI_K1GQAh81QEyZn5XIRZaPkhKAZFI9tjAh0jdJDiAT4rGZQKRPkhRAJtiDTRAkyxeJDEnyEAdkAQCgLLsf" }
Example error response for a bad request.
{ "error": "bad_request", "reason": "Bad request." }
Example error response for a bad request.
{ "error": "bad_request", "reason": "Bad request." }
Example error response for reader access is required for this request.
{ "error": "unauthorized", "reason": "_reader access is required for this request." }
Example error response for reader access is required for this request.
{ "error": "unauthorized", "reason": "_reader access is required for this request." }
Example error response for incorrect credentials.
{ "error": "unauthorized", "reason": "Name or password is incorrect." }
Example error response for incorrect credentials.
{ "error": "unauthorized", "reason": "Name or password is incorrect." }
Example error response when payment is required. For example, if the data quota of the plan is exceeded.
{ "error": "payment_required", "reason": "Payment required" }
Example error response when payment is required. For example, if the data quota of the plan is exceeded.
{ "error": "payment_required", "reason": "Payment required" }
Example error response for a forbidden request.
{ "error": "forbidden", "reason": "server_admin access is required for this request" }
Example error response for a forbidden request.
{ "error": "forbidden", "reason": "server_admin access is required for this request" }
Example error response for an account temporarily locked out.
{ "error": "forbidden", "reason": "Account is temporarily locked due to multiple authentication failures" }
Example error response for an account temporarily locked out.
{ "error": "forbidden", "reason": "Account is temporarily locked due to multiple authentication failures" }
Example error response for a database does not exist.
{ "error": "not_found", "reason": "Database does not exist." }
Example error response for a database does not exist.
{ "error": "not_found", "reason": "Database does not exist." }
Example error response for timeout reading client request.
{ "error": "request_timeout", "reason": "Request timeout" }
Example error response for timeout reading client request.
{ "error": "request_timeout", "reason": "Request timeout" }
Example error response for gone.
{ "error": "gone", "reason": "The requested resource is no longer located here, verify your DNS settings." }
Example error response for gone.
{ "error": "gone", "reason": "The requested resource is no longer located here, verify your DNS settings." }
Example error response for too many requests.
{ "error": "too_many_requests", "reason": "You've exceeded your rate limit allowance. Please try again later." }
Example error response for too many requests.
{ "error": "too_many_requests", "reason": "You've exceeded your rate limit allowance. Please try again later." }
Example error response for an unknown server error.
{ "error": "unknown_error", "reason": "function_clause", "ref": 2632214382 }
Example error response for an unknown server error.
{ "error": "unknown_error", "reason": "function_clause", "ref": 2632214382 }
Example error response for bad gateway.
{ "error": "bad_gateway", "reason": "Bad gateway" }
Example error response for bad gateway.
{ "error": "bad_gateway", "reason": "Bad gateway" }
Example error response for service unavailable.
{ "error": "service_unavailable", "reason": "Service unavailable" }
Example error response for service unavailable.
{ "error": "service_unavailable", "reason": "Service unavailable" }
Example error response for gateway timeout.
{ "error": "gateway_timeout", "reason": "Gateway timeout" }
Example error response for gateway timeout.
{ "error": "gateway_timeout", "reason": "Gateway timeout" }
Retrieve the HTTP headers for a database
Returns the HTTP headers that contain a minimal amount of information about the specified database. Since the response body is empty, using the HEAD method is a lightweight way to check if the database exists or not.
Returns the HTTP headers that contain a minimal amount of information about the specified database. Since the response body is empty, using the HEAD method is a lightweight way to check if the database exists or not.
Returns the HTTP headers that contain a minimal amount of information about the specified database. Since the response body is empty, using the HEAD method is a lightweight way to check if the database exists or not.
Returns the HTTP headers that contain a minimal amount of information about the specified database. Since the response body is empty, using the HEAD method is a lightweight way to check if the database exists or not.
Returns the HTTP headers that contain a minimal amount of information about the specified database. Since the response body is empty, using the HEAD method is a lightweight way to check if the database exists or not.
HEAD /{db}
(cloudant *CloudantV1) HeadDatabase(headDatabaseOptions *HeadDatabaseOptions) (response *core.DetailedResponse, err error)
(cloudant *CloudantV1) HeadDatabaseWithContext(ctx context.Context, headDatabaseOptions *HeadDatabaseOptions) (response *core.DetailedResponse, err error)
ServiceCall<Void> headDatabase(HeadDatabaseOptions headDatabaseOptions)
headDatabase(params)
head_database(
self,
db: str,
**kwargs,
) -> DetailedResponse
Request
Instantiate the HeadDatabaseOptions
struct and set the fields to provide parameter values for the HeadDatabase
method.
Use the HeadDatabaseOptions.Builder
to create a HeadDatabaseOptions
object that contains the parameter values for the headDatabase
method.
Custom Headers
Set a unique identifier to trace a request.
Possible values: length = 36, Value must match regular expression
^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-4[0-9a-fA-F]{3}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$
Path Parameters
Path parameter to specify the database name.
Possible values: 1 ≤ length ≤ 238, Value must match regular expression
^_dbs$|^_global_changes$|^_metadata$|^_nodes$|^_replicator$|^_users$|^[a-z][a-z0-9_$()+/-]*$
WithContext method only
A context.Context instance that you can use to specify a timeout for the operation or to cancel an in-flight request.
The HeadDatabase options.
Path parameter to specify the database name.
Possible values: 1 ≤ length ≤ 238, Value must match regular expression
/^_dbs$|^_global_changes$|^_metadata$|^_nodes$|^_replicator$|^_users$|^[a-z][a-z0-9_$()+\/-]*$/
The headDatabase options.
Path parameter to specify the database name.
Possible values: 1 ≤ length ≤ 238, Value must match regular expression
/^_dbs$|^_global_changes$|^_metadata$|^_nodes$|^_replicator$|^_users$|^[a-z][a-z0-9_$()+\/-]*$/
parameters
Path parameter to specify the database name.
Possible values: 1 ≤ length ≤ 238, Value must match regular expression
/^_dbs$|^_global_changes$|^_metadata$|^_nodes$|^_replicator$|^_users$|^[a-z][a-z0-9_$()+\/-]*$/
parameters
Path parameter to specify the database name.
Possible values: 1 ≤ length ≤ 238, Value must match regular expression
/^_dbs$|^_global_changes$|^_metadata$|^_nodes$|^_replicator$|^_users$|^[a-z][a-z0-9_$()+\/-]*$/
curl -H "Authorization: Bearer $API_BEARER_TOKEN" --head "$SERVICE_URL/products"
import ( "encoding/json" "fmt" "github.com/IBM/cloudant-go-sdk/cloudantv1" )
service, err := cloudantv1.NewCloudantV1( &cloudantv1.CloudantV1Options{}, ) if err != nil { panic(err) } headDatabaseOptions := service.NewHeadDatabaseOptions( "products", ) response, err := service.HeadDatabase(headDatabaseOptions) if err != nil { panic(err) } fmt.Println(response.StatusCode)
import com.ibm.cloud.cloudant.v1.Cloudant; import com.ibm.cloud.cloudant.v1.model.HeadDatabaseOptions;
Cloudant service = Cloudant.newInstance(); HeadDatabaseOptions databaseOptions = new HeadDatabaseOptions.Builder() .db("products") .build(); int statusCode = service.headDatabase(databaseOptions).execute().getStatusCode(); System.out.println(statusCode);
import { CloudantV1 } from '@ibm-cloud/cloudant'; const service = CloudantV1.newInstance({}); service.headDatabase({db: 'products'}).then(response => { console.log(response.status); });
from ibmcloudant.cloudant_v1 import CloudantV1 service = CloudantV1.new_instance() response = service.head_database(db='products') print(response.get_status_code())
Response
Response Headers
Header for returning the compression codec used if an attachment's content_type is in list of compressible types.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Header returning the attachment size. If a compression codec is used, this value is the compressed size.
Possible values: 0 ≤ value ≤ 10485760
Header returning the server response date-time.
Possible values: 28 ≤ length ≤ 31, Value must match regular expression
^(Mon|Tue|Wed|Thu|Fri|Sat|Sun), [0-3]\d (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) \d{4} [0-2]\d:[0-5]\d:[0-6]\d ([+-]\d{4}|[A-Z]{2,3})$
Header returning the server information.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Header added by proxies through which the response was sent.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Header returning the Cloudant IAM action of the request.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^cloudantnosqldb\..+$
Header returning the Cloudant backend that handled the request.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Header returning the Cloudant class of the request.
Possible values: [
lookup
,query
,unlimited
,write
]Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Status Code
HTTP response for DatabaseInformation.
HTTP error for bad request.
HTTP error for unauthorized.
HTTP error for payment required.
HTTP error for forbidden.
HTTP error for not found.
HTTP error for timeout reading client request.
HTTP error for gone.
HTTP error for too many requests.
HTTP error for internal server error.
HTTP error for bad gateway.
HTTP error for service unavailable.
HTTP error for gateway timeout.
Create a database
Create a new database with the requested properties.
Create a new database with the requested properties.
Create a new database with the requested properties.
Create a new database with the requested properties.
Create a new database with the requested properties.
PUT /{db}
(cloudant *CloudantV1) PutDatabase(putDatabaseOptions *PutDatabaseOptions) (result *Ok, response *core.DetailedResponse, err error)
(cloudant *CloudantV1) PutDatabaseWithContext(ctx context.Context, putDatabaseOptions *PutDatabaseOptions) (result *Ok, response *core.DetailedResponse, err error)
ServiceCall<Ok> putDatabase(PutDatabaseOptions putDatabaseOptions)
putDatabase(params)
put_database(
self,
db: str,
*,
partitioned: Optional[bool] = None,
q: Optional[int] = None,
**kwargs,
) -> DetailedResponse
Request
Instantiate the PutDatabaseOptions
struct and set the fields to provide parameter values for the PutDatabase
method.
Use the PutDatabaseOptions.Builder
to create a PutDatabaseOptions
object that contains the parameter values for the putDatabase
method.
Custom Headers
Set a unique identifier to trace a request.
Possible values: length = 36, Value must match regular expression
^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-4[0-9a-fA-F]{3}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$
Path Parameters
Path parameter to specify the database name.
Possible values: 1 ≤ length ≤ 238, Value must match regular expression
^_dbs$|^_global_changes$|^_metadata$|^_nodes$|^_replicator$|^_users$|^[a-z][a-z0-9_$()+/-]*$
Query Parameters
Query parameter to specify whether to enable database partitions when creating a database.
Before using read the FAQs to understand the limitations and appropriate use cases.
Default:
false
The number of replicas of the database in the cluster. The default is 3, unless overridden in the
cluster config
.Possible values: value = 3
Default:
3
The number of shards in the database. Each shard is a partition of the hash value range. Cloudant recommends using the default value for most databases. However, if your database is expected to be larger than 250 GB or have a lot of indexes, you may need to adjust the settings. In these cases, it's best to reach out to IBM Cloudant customer support for guidance on how to meet your specific needs and requirements.
Possible values: 1 ≤ value ≤ 120
Default:
16
WithContext method only
A context.Context instance that you can use to specify a timeout for the operation or to cancel an in-flight request.
The PutDatabase options.
Path parameter to specify the database name.
Possible values: 1 ≤ length ≤ 238, Value must match regular expression
/^_dbs$|^_global_changes$|^_metadata$|^_nodes$|^_replicator$|^_users$|^[a-z][a-z0-9_$()+\/-]*$/
Query parameter to specify whether to enable database partitions when creating a database.
Before using read the FAQs to understand the limitations and appropriate use cases.
Default:
false
The number of shards in the database. Each shard is a partition of the hash value range. Cloudant recommends using the default value for most databases. However, if your database is expected to be larger than 250 GB or have a lot of indexes, you may need to adjust the settings. In these cases, it's best to reach out to IBM Cloudant customer support for guidance on how to meet your specific needs and requirements.
Possible values: 1 ≤ value ≤ 120
Default:
16
The putDatabase options.
Path parameter to specify the database name.
Possible values: 1 ≤ length ≤ 238, Value must match regular expression
/^_dbs$|^_global_changes$|^_metadata$|^_nodes$|^_replicator$|^_users$|^[a-z][a-z0-9_$()+\/-]*$/
Query parameter to specify whether to enable database partitions when creating a database.
Before using read the FAQs to understand the limitations and appropriate use cases.
Default:
false
The number of shards in the database. Each shard is a partition of the hash value range. Cloudant recommends using the default value for most databases. However, if your database is expected to be larger than 250 GB or have a lot of indexes, you may need to adjust the settings. In these cases, it's best to reach out to IBM Cloudant customer support for guidance on how to meet your specific needs and requirements.
Possible values: 1 ≤ value ≤ 120
Default:
16
parameters
Path parameter to specify the database name.
Possible values: 1 ≤ length ≤ 238, Value must match regular expression
/^_dbs$|^_global_changes$|^_metadata$|^_nodes$|^_replicator$|^_users$|^[a-z][a-z0-9_$()+\/-]*$/
Query parameter to specify whether to enable database partitions when creating a database.
Before using read the FAQs to understand the limitations and appropriate use cases.
Default:
false
The number of shards in the database. Each shard is a partition of the hash value range. Cloudant recommends using the default value for most databases. However, if your database is expected to be larger than 250 GB or have a lot of indexes, you may need to adjust the settings. In these cases, it's best to reach out to IBM Cloudant customer support for guidance on how to meet your specific needs and requirements.
Possible values: 1 ≤ value ≤ 120
Default:
16
parameters
Path parameter to specify the database name.
Possible values: 1 ≤ length ≤ 238, Value must match regular expression
/^_dbs$|^_global_changes$|^_metadata$|^_nodes$|^_replicator$|^_users$|^[a-z][a-z0-9_$()+\/-]*$/
Query parameter to specify whether to enable database partitions when creating a database.
Before using read the FAQs to understand the limitations and appropriate use cases.
Default:
false
The number of shards in the database. Each shard is a partition of the hash value range. Cloudant recommends using the default value for most databases. However, if your database is expected to be larger than 250 GB or have a lot of indexes, you may need to adjust the settings. In these cases, it's best to reach out to IBM Cloudant customer support for guidance on how to meet your specific needs and requirements.
Possible values: 1 ≤ value ≤ 120
Default:
16
curl -H "Authorization: Bearer $API_BEARER_TOKEN" -X PUT "$SERVICE_URL/products"
import ( "encoding/json" "fmt" "github.com/IBM/cloudant-go-sdk/cloudantv1" )
service, err := cloudantv1.NewCloudantV1( &cloudantv1.CloudantV1Options{}, ) if err != nil { panic(err) } putDatabaseOptions := service.NewPutDatabaseOptions( "events", ) putDatabaseOptions.SetPartitioned(true) ok, response, err := service.PutDatabase(putDatabaseOptions) if err != nil { panic(err) } b, _ := json.MarshalIndent(ok, "", " ") fmt.Println(string(b))
import com.ibm.cloud.cloudant.v1.Cloudant; import com.ibm.cloud.cloudant.v1.model.Ok; import com.ibm.cloud.cloudant.v1.model.PutDatabaseOptions;
Cloudant service = Cloudant.newInstance(); PutDatabaseOptions databaseOptions = new PutDatabaseOptions.Builder() .db("events") .partitioned(true) .build(); Ok response = service.putDatabase(databaseOptions).execute() .getResult(); System.out.println(response);
import { CloudantV1 } from '@ibm-cloud/cloudant'; const service = CloudantV1.newInstance({}); service.putDatabase({ db: 'events', partitioned: true }).then(response => { console.log(response.result); });
from ibmcloudant.cloudant_v1 import CloudantV1 service = CloudantV1.new_instance() response = service.put_database(db='events', partitioned=True).get_result() print(response)
Response
Schema for an OK result.
ok
Schema for an OK result.
ok.
Schema for an OK result.
ok.
Schema for an OK result.
ok.
Schema for an OK result.
ok.
Status Code
HTTP response for database creation operation.
HTTP response for database creation operation.
HTTP error for bad request.
HTTP error for unauthorized.
HTTP error for payment required.
HTTP error for forbidden.
HTTP error for not found.
HTTP error for timeout reading client request.
HTTP error for gone.
HTTP error for precondition failed.
HTTP error for unsupported media type.
HTTP error for too many requests.
HTTP error for internal server error.
HTTP error for bad gateway.
HTTP error for service unavailable.
HTTP error for gateway timeout.
Example Ok response.
{ "ok": true }
Example Ok response.
{ "ok": true }
Example Ok response.
{ "ok": true }
Example Ok response.
{ "ok": true }
Example error response for an invalid database name.
{ "error": "illegal_database_name", "reason": "Only lowercase characters (a-z), digits (0-9), and any of the characters _, $, (, ), +, -, and / are allowed. Must begin with a letter." }
Example error response for an invalid database name.
{ "error": "illegal_database_name", "reason": "Only lowercase characters (a-z), digits (0-9), and any of the characters _, $, (, ), +, -, and / are allowed. Must begin with a letter." }
Example error response for reader access is required for this request.
{ "error": "unauthorized", "reason": "_reader access is required for this request." }
Example error response for reader access is required for this request.
{ "error": "unauthorized", "reason": "_reader access is required for this request." }
Example error response for incorrect credentials.
{ "error": "unauthorized", "reason": "Name or password is incorrect." }
Example error response for incorrect credentials.
{ "error": "unauthorized", "reason": "Name or password is incorrect." }
Example error response when payment is required. For example, if the data quota of the plan is exceeded.
{ "error": "payment_required", "reason": "Payment required" }
Example error response when payment is required. For example, if the data quota of the plan is exceeded.
{ "error": "payment_required", "reason": "Payment required" }
Example error response for a forbidden request.
{ "error": "forbidden", "reason": "server_admin access is required for this request" }
Example error response for a forbidden request.
{ "error": "forbidden", "reason": "server_admin access is required for this request" }
Example error response for an account temporarily locked out.
{ "error": "forbidden", "reason": "Account is temporarily locked due to multiple authentication failures" }
Example error response for an account temporarily locked out.
{ "error": "forbidden", "reason": "Account is temporarily locked due to multiple authentication failures" }
Example error response for a not found request.
{ "error": "not_found", "reason": "missing" }
Example error response for a not found request.
{ "error": "not_found", "reason": "missing" }
Example error response for timeout reading client request.
{ "error": "request_timeout", "reason": "Request timeout" }
Example error response for timeout reading client request.
{ "error": "request_timeout", "reason": "Request timeout" }
Example error response for gone.
{ "error": "gone", "reason": "The requested resource is no longer located here, verify your DNS settings." }
Example error response for gone.
{ "error": "gone", "reason": "The requested resource is no longer located here, verify your DNS settings." }
Example error response for a database already existing.
{ "error": "file_exists", "reason": "The database could not be created, the file already exists." }
Example error response for a database already existing.
{ "error": "file_exists", "reason": "The database could not be created, the file already exists." }
Example error response for unsupported media type.
{ "error": "bad_content_type", "reason": "Content-Type must be application/json" }
Example error response for unsupported media type.
{ "error": "bad_content_type", "reason": "Content-Type must be application/json" }
Example error response for too many requests.
{ "error": "too_many_requests", "reason": "You've exceeded your rate limit allowance. Please try again later." }
Example error response for too many requests.
{ "error": "too_many_requests", "reason": "You've exceeded your rate limit allowance. Please try again later." }
Example error response for an unknown server error.
{ "error": "unknown_error", "reason": "function_clause", "ref": 2632214382 }
Example error response for an unknown server error.
{ "error": "unknown_error", "reason": "function_clause", "ref": 2632214382 }
Example error response for bad gateway.
{ "error": "bad_gateway", "reason": "Bad gateway" }
Example error response for bad gateway.
{ "error": "bad_gateway", "reason": "Bad gateway" }
Example error response for service unavailable.
{ "error": "service_unavailable", "reason": "Service unavailable" }
Example error response for service unavailable.
{ "error": "service_unavailable", "reason": "Service unavailable" }
Example error response for gateway timeout.
{ "error": "gateway_timeout", "reason": "Gateway timeout" }
Example error response for gateway timeout.
{ "error": "gateway_timeout", "reason": "Gateway timeout" }
Query the database document changes feed (GET)
Returns a sorted list of changes made to documents in the database, in time order of application. Only the most recent change for a specific document is included in the list. For example, if you add fields to a document and then delete them, an API client that checks for changes might not know about the intermediate state of added documents. These checks listen for updates to the database for post processing or synchronization, and for practical purposes, a continuously connected _changes
feed is a reasonable approach for generating a real-time log for most applications.
Note
Before using the changes feed read the FAQs to understand the limitations and appropriate use cases.
To use some filter types you must use the
POST
version of this request.
GET /{db}/_changes
Request
Custom Headers
Header parameter to specify the ID of the last events received by the server on a previous connection. Overrides
since
query parameter.Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^0|([1-9]\d*-[A-Za-z0-9-_]+)|now$
Set a unique identifier to trace a request.
Possible values: length = 36, Value must match regular expression
^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-4[0-9a-fA-F]{3}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$
Path Parameters
Path parameter to specify the database name.
Possible values: 1 ≤ length ≤ 238, Value must match regular expression
^_dbs$|^_global_changes$|^_metadata$|^_nodes$|^_replicator$|^_users$|^[a-z][a-z0-9_$()+/-]*$
Query Parameters
Query parameter to specify whether to include the encoding information in attachment stubs if the particular attachment is compressed.
Default:
false
Query parameter to specify whether to include attachments bodies in a response.
Default:
false
Query parameter to specify whether to include a list of conflicted revisions in each returned document. Active only when
include_docs
istrue
.Default:
false
Query parameter to specify whether to return the documents in descending by key order.
Default:
false
Query parameter to specify a JSON array list of document IDs to restrict the changes feed to. Used with the
_doc_ids
filter. Since length of URL is limited, it is better to use POST/{db}/_changes
instead.Possible values: 0 ≤ number of items ≤ 65535, 1 ≤ length ≤ 7168, Value must match regular expression
^[^_].*$
Query parameter to specify the changes feed type.
Allowable values: [
continuous
,eventsource
,longpoll
,normal
]Default:
normal
Query parameter to specify a filter to emit only specific events from the changes stream.
The built-in filter types are:
_design
- Returns only changes to design documents._doc_ids
- Returns changes for documents with an ID matching one specified indoc_ids
request body parameter. (POST
only)_selector
- Returns changes for documents that match theselector
request body parameter. The selector syntax is the same as used for_find
. (POST
only)_view
- Returns changes for documents that match an existing map function in the view specified by the query parameterview
.
Additionally, the value can be the name of a JS filter function from a design document. For example:
design_doc/filtername
.Note: For better performance use the built-in
_selector
,_design
or_doc_ids
filters rather than JS based_view
or design document filters. If you need to pass values to change the filtered content use the_selector
filter type.Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^_design|_docs_ids|_selector|_view|.*\/.*$
Query parameter to specify the period in milliseconds after which an empty line is sent in the results. Off by default and only applicable for
continuous
andeventsource
feeds. Overrides any timeout to keep the feed alive indefinitely. May also betrue
to use a value of60000
.Note: Delivery of heartbeats cannot be relied on at specific intervals. If your application runs in an environment where idle network connections may break,
heartbeat
is not suitable as a keepalive mechanism. Instead, consider one of the following options:- Use the
timeout
parameter with a value that is compatible with your network environment. - Switch to scheduled usage of one of the non-continuous changes feed types
(
normal
orlongpoll
). - Use TCP keepalive.
Possible values: 1 ≤ value ≤ 60000
- Use the
Query parameter to specify whether to include the full content of the documents in the response.
Default:
false
Query parameter to specify the ID of the last events received by the server on a previous connection. Alias of
Last-Event-ID
header.Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^0|([1-9]\d*-[A-Za-z0-9-_]+)|now$
Query parameter to specify the number of returned documents to limit the result to.
Possible values: 0 ≤ value ≤ 4294967295
Query parameter to specify that the update seq should only be calculated with every Nth result returned. When fetching changes in a batch, setting
seq_interval=<batch size>
, where <batch size> is the number of results requested per batch, load can be reduced on the source database as computing the seq value across many shards (especially in highly-sharded databases) is expensive.Possible values: 1 ≤ value ≤ 4294967295
Query parameter to specify to start the results from the change immediately after the given update sequence. Can be a valid update sequence or
now
value. Default is0
i.e. all changes.Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^0|([1-9]\d*-[A-Za-z0-9-_]+)|now$
Example:
0
Query parameter to specify how many revisions are returned in the changes array. The default,
main_only
, will only return the current "winning" revision; all_docs will return all leaf revisions (including conflicts and deleted former conflicts).Allowable values: [
main_only
,all_docs
]Default:
main_only
Query parameter to specify the maximum period in milliseconds to wait for a change before the response is sent, even if there are no results. Only applicable for
longpoll
orcontinuous
feeds. Default value is specified byhttpd/changes_timeout
configuration option. Note that60000
value is also the default maximum timeout to prevent undetected dead connections.Possible values: 0 ≤ value ≤ 60000
Default:
60000
Query parameter to specify a view function as a filter. Documents pass the filter if the view's map function emits at least one record for them.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^[^_].*$
curl -H "Authorization: Bearer $API_BEARER_TOKEN" -X GET "$SERVICE_URL/orders/_changes?limit=1"
Response
Schema for normal changes feed result.
last_seq
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^0|([1-9]\d*-[A-Za-z0-9-_]+)|now$
pending
Possible values: 0 ≤ value ≤ 9007199254740992
results
Possible values: 0 ≤ number of items ≤ 4294967295
Status Code
HTTP response for
/{db}/_changes
style operations.HTTP error for bad request.
HTTP error for unauthorized.
HTTP error for payment required.
HTTP error for forbidden.
HTTP error for not found.
HTTP error for timeout reading client request.
HTTP error for gone.
HTTP error for too many requests.
HTTP error for internal server error.
HTTP error for bad gateway.
HTTP error for service unavailable.
HTTP error for gateway timeout.
Example ChangesResult response.
{ "last_seq": "7-g1AAAAPveJy1kk9OAjEYxSuYGBO3nsCdC9LOP5yVXkGhB-jXdoKTsSQG1p7CKyj0Ep6CS3AGob5hwYSNMJOwek3T971fXr-KMXYz6Rt2Z0hP3-2ToWygq-ncKDfjXOzPA2dnFR73FKNbKcelYoe2-H9bbZJ07_2ynPTVxRvurjTPhU6i06YcpkVH0hDk6TGEbWtOmAKBddRwUpw-iKE4ByeCxlR6v2jNCdOSPkLY1JxsxykyLlKuDLueO2OLV2dNq6-tx23dJXuR8rMtD2wj2CDfqL5m6u2Ycp1HQ5N26e4ILaIWiIL8hvDTgXcDG-RZylXDm8V5IbLkPLwodgX58n7dgRfFriHYz9DsZpqQtQWdNqn8A1TdTOE", "pending": 3, "results": [ { "changes": [ { "rev": "7-7a5191bfeb2f6eed6b3b6fa83f4810f5" } ], "deleted": true, "id": "0007741142412418284", "seq": "1-g1AAAAMFeJydkcENgjAUhquYePHqBN48EEBj4klXUOgAbSExDUJi8OwUrqDQJZyCJZhBqD8XE0Iiwulvmvf1e68vJITMToZPFj4X8SXY-3xjijC--ixKLMv-ns0oSEIUjxnhc0o9yUgTW_3GaojypVKZPBlsdMbdVFhbW6yd_15p2pwOG0SK77SuevcJSHP06rbILicgj0ul0t5OQBm_aV22yI5l1FAVTciR0ntfKzAXGOKJz-prBpYCQ7y1fg1wl8AQB0rzAW4MnCMeShUD3Bi4QGDTGrT8AMkPBk0" } ] }
Example error response for a bad request.
{ "error": "bad_request", "reason": "Bad request." }
Example error response for reader access is required for this request.
{ "error": "unauthorized", "reason": "_reader access is required for this request." }
Example error response for incorrect credentials.
{ "error": "unauthorized", "reason": "Name or password is incorrect." }
Example error response when payment is required. For example, if the data quota of the plan is exceeded.
{ "error": "payment_required", "reason": "Payment required" }
Example error response for a forbidden request.
{ "error": "forbidden", "reason": "server_admin access is required for this request" }
Example error response for an account temporarily locked out.
{ "error": "forbidden", "reason": "Account is temporarily locked due to multiple authentication failures" }
Example error response for a not found request.
{ "error": "not_found", "reason": "missing" }
Example error response for timeout reading client request.
{ "error": "request_timeout", "reason": "Request timeout" }
Example error response for gone.
{ "error": "gone", "reason": "The requested resource is no longer located here, verify your DNS settings." }
Example error response for too many requests.
{ "error": "too_many_requests", "reason": "You've exceeded your rate limit allowance. Please try again later." }
Example error response for an unknown server error.
{ "error": "unknown_error", "reason": "function_clause", "ref": 2632214382 }
Example error response for bad gateway.
{ "error": "bad_gateway", "reason": "Bad gateway" }
Example error response for service unavailable.
{ "error": "service_unavailable", "reason": "Service unavailable" }
Example error response for gateway timeout.
{ "error": "gateway_timeout", "reason": "Gateway timeout" }
Retrieve HTTP headers for the database document changes feed (GET)
Retrieves the HTTP headers for the database document changes feed (GET).
HEAD /{db}/_changes
Request
Custom Headers
Header parameter to specify the ID of the last events received by the server on a previous connection. Overrides
since
query parameter.Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^0|([1-9]\d*-[A-Za-z0-9-_]+)|now$
Set a unique identifier to trace a request.
Possible values: length = 36, Value must match regular expression
^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-4[0-9a-fA-F]{3}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$
Path Parameters
Path parameter to specify the database name.
Possible values: 1 ≤ length ≤ 238, Value must match regular expression
^_dbs$|^_global_changes$|^_metadata$|^_nodes$|^_replicator$|^_users$|^[a-z][a-z0-9_$()+/-]*$
Response
Response Headers
Header for returning the compression codec used if an attachment's content_type is in list of compressible types.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Header returning the attachment size. If a compression codec is used, this value is the compressed size.
Possible values: 0 ≤ value ≤ 10485760
Header returning the server response date-time.
Possible values: 28 ≤ length ≤ 31, Value must match regular expression
^(Mon|Tue|Wed|Thu|Fri|Sat|Sun), [0-3]\d (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) \d{4} [0-2]\d:[0-5]\d:[0-6]\d ([+-]\d{4}|[A-Z]{2,3})$
Header returning the ETag for a resource.
Examples:Double quoted base64 encoded attachment digest.
"MEHlNHhicVt9efOzyvsz0Q=="
Double quoted document revision identifier.
"2-240fc93fad07083c338c7e0ea55791b3"
Double quoted local document tag.
"6APCCGX4B76OFFD5972MSBFHD"
Header returning the server information.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Header added by proxies through which the response was sent.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Header returning the Cloudant IAM action of the request.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^cloudantnosqldb\..+$
Header returning the Cloudant backend that handled the request.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Header returning the Cloudant class of the request.
Possible values: [
lookup
,query
,unlimited
,write
]Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Status Code
HTTP response for
/{db}/_changes
style operations.HTTP error for bad request.
HTTP error for unauthorized.
HTTP error for payment required.
HTTP error for forbidden.
HTTP error for not found.
HTTP error for timeout reading client request.
HTTP error for gone.
HTTP error for too many requests.
HTTP error for internal server error.
HTTP error for bad gateway.
HTTP error for service unavailable.
HTTP error for gateway timeout.
Query the database document changes feed
Requests the database changes feed in the same way as GET /{db}/_changes
does. It is widely used with the filter
query parameter because it allows one to pass more information to the filter.
Note
Before using the changes feed read the FAQs to understand the limitations and appropriate use cases.
If you need to pass parameters to dynamically change the filtered
content use the _selector
filter type for better performance and
compatibility. The SDKs have full support for change requests using
selector filters, but don't support passing parameters to design
document filters.
Requests the database changes feed in the same way as GET /{db}/_changes
does. It is widely used with the filter
query parameter because it allows one to pass more information to the filter.
Note
Before using the changes feed read the FAQs to understand the limitations and appropriate use cases.
If you need to pass parameters to dynamically change the filtered content use the _selector
filter type for better performance and compatibility. The SDKs have full support for change requests using selector filters, but don't support passing parameters to design document filters.
Requests the database changes feed in the same way as GET /{db}/_changes
does. It is widely used with the filter
query parameter because it allows one to pass more information to the filter.
Note
Before using the changes feed read the FAQs to understand the limitations and appropriate use cases.
If you need to pass parameters to dynamically change the filtered content use the _selector
filter type for better performance and compatibility. The SDKs have full support for change requests using selector filters, but don't support passing parameters to design document filters.
Requests the database changes feed in the same way as GET /{db}/_changes
does. It is widely used with the filter
query parameter because it allows one to pass more information to the filter.
Note
Before using the changes feed read the FAQs to understand the limitations and appropriate use cases.
If you need to pass parameters to dynamically change the filtered content use the _selector
filter type for better performance and compatibility. The SDKs have full support for change requests using selector filters, but don't support passing parameters to design document filters.
Requests the database changes feed in the same way as GET /{db}/_changes
does. It is widely used with the filter
query parameter because it allows one to pass more information to the filter.
Note
Before using the changes feed read the FAQs to understand the limitations and appropriate use cases.
If you need to pass parameters to dynamically change the filtered content use the _selector
filter type for better performance and compatibility. The SDKs have full support for change requests using selector filters, but don't support passing parameters to design document filters.
POST /{db}/_changes
(cloudant *CloudantV1) PostChanges(postChangesOptions *PostChangesOptions) (result *ChangesResult, response *core.DetailedResponse, err error)
(cloudant *CloudantV1) PostChangesWithContext(ctx context.Context, postChangesOptions *PostChangesOptions) (result *ChangesResult, response *core.DetailedResponse, err error)
(cloudant *CloudantV1) PostChangesAsStream(postChangesOptions *PostChangesOptions) (result io.ReadCloser, response *core.DetailedResponse, err error)
ServiceCall<ChangesResult> postChanges(PostChangesOptions postChangesOptions)
ServiceCall<InputStream> postChangesAsStream(PostChangesOptions postChangesOptions)
postChanges(params)
postChangesAsStream(params)
post_changes(
self,
db: str,
*,
doc_ids: Optional[List[str]] = None,
fields: Optional[List[str]] = None,
selector: Optional[dict] = None,
last_event_id: Optional[str] = None,
att_encoding_info: Optional[bool] = None,
attachments: Optional[bool] = None,
conflicts: Optional[bool] = None,
descending: Optional[bool] = None,
feed: Optional[str] = None,
filter: Optional[str] = None,
heartbeat: Optional[int] = None,
include_docs: Optional[bool] = None,
limit: Optional[int] = None,
seq_interval: Optional[int] = None,
since: Optional[str] = None,
style: Optional[str] = None,
timeout: Optional[int] = None,
view: Optional[str] = None,
**kwargs,
) -> DetailedResponse
post_changes_as_stream(
self,
db: str,
*,
doc_ids: Optional[List[str]] = None,
fields: Optional[List[str]] = None,
selector: Optional[dict] = None,
last_event_id: Optional[str] = None,
att_encoding_info: Optional[bool] = None,
attachments: Optional[bool] = None,
conflicts: Optional[bool] = None,
descending: Optional[bool] = None,
feed: Optional[str] = None,
filter: Optional[str] = None,
heartbeat: Optional[int] = None,
include_docs: Optional[bool] = None,
limit: Optional[int] = None,
seq_interval: Optional[int] = None,
since: Optional[str] = None,
style: Optional[str] = None,
timeout: Optional[int] = None,
view: Optional[str] = None,
**kwargs,
) -> DetailedResponse
Request
Instantiate the PostChangesOptions
struct and set the fields to provide parameter values for the PostChanges
method.
Use the PostChangesOptions.Builder
to create a PostChangesOptions
object that contains the parameter values for the postChanges
method.
Custom Headers
Header parameter to specify the ID of the last events received by the server on a previous connection. Overrides
since
query parameter.Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^0|([1-9]\d*-[A-Za-z0-9-_]+)|now$
Set a unique identifier to trace a request.
Possible values: length = 36, Value must match regular expression
^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-4[0-9a-fA-F]{3}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$
Path Parameters
Path parameter to specify the database name.
Possible values: 1 ≤ length ≤ 238, Value must match regular expression
^_dbs$|^_global_changes$|^_metadata$|^_nodes$|^_replicator$|^_users$|^[a-z][a-z0-9_$()+/-]*$
Query Parameters
Query parameter to specify whether to include the encoding information in attachment stubs if the particular attachment is compressed.
Default:
false
Query parameter to specify whether to include attachments bodies in a response.
Default:
false
Query parameter to specify whether to include a list of conflicted revisions in each returned document. Active only when
include_docs
istrue
.Default:
false
Query parameter to specify whether to return the documents in descending by key order.
Default:
false
Query parameter to specify the changes feed type.
Allowable values: [
continuous
,eventsource
,longpoll
,normal
]Default:
normal
Query parameter to specify a filter to emit only specific events from the changes stream.
The built-in filter types are:
_design
- Returns only changes to design documents._doc_ids
- Returns changes for documents with an ID matching one specified indoc_ids
request body parameter. (POST
only)_selector
- Returns changes for documents that match theselector
request body parameter. The selector syntax is the same as used for_find
. (POST
only)_view
- Returns changes for documents that match an existing map function in the view specified by the query parameterview
.
Additionally, the value can be the name of a JS filter function from a design document. For example:
design_doc/filtername
.Note: For better performance use the built-in
_selector
,_design
or_doc_ids
filters rather than JS based_view
or design document filters. If you need to pass values to change the filtered content use the_selector
filter type.Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^_design|_docs_ids|_selector|_view|.*\/.*$
Query parameter to specify the period in milliseconds after which an empty line is sent in the results. Off by default and only applicable for
continuous
andeventsource
feeds. Overrides any timeout to keep the feed alive indefinitely. May also betrue
to use a value of60000
.Note: Delivery of heartbeats cannot be relied on at specific intervals. If your application runs in an environment where idle network connections may break,
heartbeat
is not suitable as a keepalive mechanism. Instead, consider one of the following options:- Use the
timeout
parameter with a value that is compatible with your network environment. - Switch to scheduled usage of one of the non-continuous changes feed types
(
normal
orlongpoll
). - Use TCP keepalive.
Possible values: 1 ≤ value ≤ 60000
- Use the
Query parameter to specify whether to include the full content of the documents in the response.
Default:
false
Query parameter to specify the ID of the last events received by the server on a previous connection. Alias of
Last-Event-ID
header.Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^0|([1-9]\d*-[A-Za-z0-9-_]+)|now$
Query parameter to specify the number of returned documents to limit the result to.
Possible values: 0 ≤ value ≤ 4294967295
Query parameter to specify that the update seq should only be calculated with every Nth result returned. When fetching changes in a batch, setting
seq_interval=<batch size>
, where <batch size> is the number of results requested per batch, load can be reduced on the source database as computing the seq value across many shards (especially in highly-sharded databases) is expensive.Possible values: 1 ≤ value ≤ 4294967295
Query parameter to specify to start the results from the change immediately after the given update sequence. Can be a valid update sequence or
now
value. Default is0
i.e. all changes.Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^0|([1-9]\d*-[A-Za-z0-9-_]+)|now$
Example:
0
Query parameter to specify how many revisions are returned in the changes array. The default,
main_only
, will only return the current "winning" revision; all_docs will return all leaf revisions (including conflicts and deleted former conflicts).Allowable values: [
main_only
,all_docs
]Default:
main_only
Query parameter to specify the maximum period in milliseconds to wait for a change before the response is sent, even if there are no results. Only applicable for
longpoll
orcontinuous
feeds. Default value is specified byhttpd/changes_timeout
configuration option. Note that60000
value is also the default maximum timeout to prevent undetected dead connections.Possible values: 0 ≤ value ≤ 60000
Default:
60000
Query parameter to specify a view function as a filter. Documents pass the filter if the view's map function emits at least one record for them.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^[^_].*$
HTTP request body for postChanges.
Example ChangesQuery request if ?filter=_doc_ids
is used.
{
"doc_ids": [
"0007741142412418284"
]
}
Example ChangesQuery request if ?filter=_selector
is used.
{
"fields": [
"type",
"user"
],
"selector": {
"_id": {
"$regex": "^0+7741142412418284"
}
}
}
Schema for a list of document IDs.
Possible values: 0 ≤ number of items ≤ 65535, 1 ≤ length ≤ 7168, Value must match regular expression
^([^_]|_(design|local)\/).+$
JSON array that uses the field syntax. Use this parameter to specify which fields of a document must be returned. If it is omitted or empty, the entire document is returned.
Possible values: 0 ≤ number of items ≤ 65535, 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
JSON object describing criteria used to select documents. The selector specifies fields in the document, and provides an expression to evaluate with the field content or other data.
The selector object must:
- Be structured as valid JSON.
- Contain a valid query expression.
Using a selector is significantly more efficient than using a JavaScript filter function, and is the recommended option if filtering on document attributes only.
Elementary selector syntax requires you to specify one or more fields, and the corresponding values required for those fields. You can create more complex selector expressions by combining operators.
Operators are identified by the use of a dollar sign
$
prefix in the name field.There are two core types of operators in the selector syntax:
- Combination operators: applied at the topmost level of selection. They are used to combine selectors. A combination operator takes a single argument. The argument is either another selector, or an array of selectors.
- Condition operators: are specific to a field, and are used to evaluate
the value stored in that field. For instance, the basic
$eq
operator matches when the specified field contains a value that is equal to the supplied argument.
It is important for query performance to use appropriate selectors:
- Only equality operators such as
$eq
,$gt
,$gte
,$lt
, and$lte
(but not$ne
) can be used as the basis of a query. You should include at least one of these in a selector. - Some operators such as
$not
,$or
,$in
, and$regex
cannot be answered from an index. For query selectors use these operators in conjunction with equality operators or create and use a partial index to reduce the number of documents that will need to be scanned.
See the Cloudant Docsfor a list of all available combination and conditional operators.
For further reference see selector syntax
- selector
WithContext method only
A context.Context instance that you can use to specify a timeout for the operation or to cancel an in-flight request.
The PostChanges options.
Path parameter to specify the database name.
Possible values: 1 ≤ length ≤ 238, Value must match regular expression
/^_dbs$|^_global_changes$|^_metadata$|^_nodes$|^_replicator$|^_users$|^[a-z][a-z0-9_$()+\/-]*$/
Schema for a list of document IDs.
Possible values: 0 ≤ number of items ≤ 65535, 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
Examples:[ "0007741142412418284" ]
JSON array that uses the field syntax. Use this parameter to specify which fields of a document must be returned. If it is omitted or empty, the entire document is returned.
Possible values: 0 ≤ number of items ≤ 65535, 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
JSON object describing criteria used to select documents. The selector specifies fields in the document, and provides an expression to evaluate with the field content or other data.
The selector object must:
- Be structured as valid JSON.
- Contain a valid query expression.
Using a selector is significantly more efficient than using a JavaScript filter function, and is the recommended option if filtering on document attributes only.
Elementary selector syntax requires you to specify one or more fields, and the corresponding values required for those fields. You can create more complex selector expressions by combining operators.
Operators are identified by the use of a dollar sign
$
prefix in the name field.There are two core types of operators in the selector syntax:
- Combination operators: applied at the topmost level of selection. They are used to combine selectors. A combination operator takes a single argument. The argument is either another selector, or an array of selectors.
- Condition operators: are specific to a field, and are used to evaluate the value stored in that field. For instance, the basic
$eq
operator matches when the specified field contains a value that is equal to the supplied argument.
It is important for query performance to use appropriate selectors:
- Only equality operators such as
$eq
,$gt
,$gte
,$lt
, and$lte
(but not$ne
) can be used as the basis of a query. You should include at least one of these in a selector. - Some operators such as
$not
,$or
,$in
, and$regex
cannot be answered from an index. For query selectors use these operators in conjunction with equality operators or create and use a partial index to reduce the number of documents that will need to be scanned.
See the Cloudant Docsfor a list of all available combination and conditional operators.
For further reference see selector syntax.
Header parameter to specify the ID of the last events received by the server on a previous connection. Overrides
since
query parameter.Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^0|([1-9]\\d*-[A-Za-z0-9-_]+)|now$/
Query parameter to specify whether to include the encoding information in attachment stubs if the particular attachment is compressed.
Default:
false
Query parameter to specify whether to include attachments bodies in a response.
Default:
false
Query parameter to specify whether to include a list of conflicted revisions in each returned document. Active only when
include_docs
istrue
.Default:
false
Query parameter to specify whether to return the documents in descending by key order.
Default:
false
Query parameter to specify the changes feed type.
Allowable values: [
continuous
,eventsource
,longpoll
,normal
]Default:
normal
Query parameter to specify a filter to emit only specific events from the changes stream.
The built-in filter types are:
_design
- Returns only changes to design documents._doc_ids
- Returns changes for documents with an ID matching one specified indoc_ids
request body parameter. (POST
only)_selector
- Returns changes for documents that match theselector
request body parameter. The selector syntax is the same as used for_find
. (POST
only)_view
- Returns changes for documents that match an existing map function in the view specified by the query parameterview
.
Additionally, the value can be the name of a JS filter function from a design document. For example:
design_doc/filtername
.Note: For better performance use the built-in
_selector
,_design
or_doc_ids
filters rather than JS based_view
or design document filters. If you need to pass values to change the filtered content use the_selector
filter type.Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^_design|_docs_ids|_selector|_view|.*\/.*$/
Query parameter to specify the period in milliseconds after which an empty line is sent in the results. Off by default and only applicable for
continuous
andeventsource
feeds. Overrides any timeout to keep the feed alive indefinitely. May also betrue
to use a value of60000
.Note: Delivery of heartbeats cannot be relied on at specific intervals. If your application runs in an environment where idle network connections may break,
heartbeat
is not suitable as a keepalive mechanism. Instead, consider one of the following options:- Use the
timeout
parameter with a value that is compatible with your network environment. - Switch to scheduled usage of one of the non-continuous changes feed types
(
normal
orlongpoll
). - Use TCP keepalive.
Possible values: 1 ≤ value ≤ 60000
- Use the
Query parameter to specify whether to include the full content of the documents in the response.
Default:
false
Query parameter to specify the number of returned documents to limit the result to.
Possible values: 0 ≤ value ≤ 4294967295
Query parameter to specify that the update seq should only be calculated with every Nth result returned. When fetching changes in a batch, setting
seq_interval=<batch size>
, where <batch size> is the number of results requested per batch, load can be reduced on the source database as computing the seq value across many shards (especially in highly-sharded databases) is expensive.Possible values: 1 ≤ value ≤ 4294967295
Query parameter to specify to start the results from the change immediately after the given update sequence. Can be a valid update sequence or
now
value. Default is0
i.e. all changes.Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^0|([1-9]\\d*-[A-Za-z0-9-_]+)|now$/
Examples:0
Query parameter to specify how many revisions are returned in the changes array. The default,
main_only
, will only return the current "winning" revision; all_docs will return all leaf revisions (including conflicts and deleted former conflicts).Allowable values: [
main_only
,all_docs
]Default:
main_only
Query parameter to specify the maximum period in milliseconds to wait for a change before the response is sent, even if there are no results. Only applicable for
longpoll
orcontinuous
feeds. Default value is specified byhttpd/changes_timeout
configuration option. Note that60000
value is also the default maximum timeout to prevent undetected dead connections.Possible values: 0 ≤ value ≤ 60000
Default:
60000
Query parameter to specify a view function as a filter. Documents pass the filter if the view's map function emits at least one record for them.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^[^_].*$/
The postChanges options.
Path parameter to specify the database name.
Possible values: 1 ≤ length ≤ 238, Value must match regular expression
/^_dbs$|^_global_changes$|^_metadata$|^_nodes$|^_replicator$|^_users$|^[a-z][a-z0-9_$()+\/-]*$/
Schema for a list of document IDs.
Possible values: 0 ≤ number of items ≤ 65535, 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
Examples:[ "0007741142412418284" ]
JSON array that uses the field syntax. Use this parameter to specify which fields of a document must be returned. If it is omitted or empty, the entire document is returned.
Possible values: 0 ≤ number of items ≤ 65535, 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
JSON object describing criteria used to select documents. The selector specifies fields in the document, and provides an expression to evaluate with the field content or other data.
The selector object must:
- Be structured as valid JSON.
- Contain a valid query expression.
Using a selector is significantly more efficient than using a JavaScript filter function, and is the recommended option if filtering on document attributes only.
Elementary selector syntax requires you to specify one or more fields, and the corresponding values required for those fields. You can create more complex selector expressions by combining operators.
Operators are identified by the use of a dollar sign
$
prefix in the name field.There are two core types of operators in the selector syntax:
- Combination operators: applied at the topmost level of selection. They are used to combine selectors. A combination operator takes a single argument. The argument is either another selector, or an array of selectors.
- Condition operators: are specific to a field, and are used to evaluate the value stored in that field. For instance, the basic
$eq
operator matches when the specified field contains a value that is equal to the supplied argument.
It is important for query performance to use appropriate selectors:
- Only equality operators such as
$eq
,$gt
,$gte
,$lt
, and$lte
(but not$ne
) can be used as the basis of a query. You should include at least one of these in a selector. - Some operators such as
$not
,$or
,$in
, and$regex
cannot be answered from an index. For query selectors use these operators in conjunction with equality operators or create and use a partial index to reduce the number of documents that will need to be scanned.
See the Cloudant Docsfor a list of all available combination and conditional operators.
For further reference see selector syntax.
Header parameter to specify the ID of the last events received by the server on a previous connection. Overrides
since
query parameter.Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^0|([1-9]\\d*-[A-Za-z0-9-_]+)|now$/
Query parameter to specify whether to include the encoding information in attachment stubs if the particular attachment is compressed.
Default:
false
Query parameter to specify whether to include attachments bodies in a response.
Default:
false
Query parameter to specify whether to include a list of conflicted revisions in each returned document. Active only when
include_docs
istrue
.Default:
false
Query parameter to specify whether to return the documents in descending by key order.
Default:
false
Query parameter to specify the changes feed type.
Allowable values: [
continuous
,eventsource
,longpoll
,normal
]Default:
normal
Query parameter to specify a filter to emit only specific events from the changes stream.
The built-in filter types are:
_design
- Returns only changes to design documents._doc_ids
- Returns changes for documents with an ID matching one specified indoc_ids
request body parameter. (POST
only)_selector
- Returns changes for documents that match theselector
request body parameter. The selector syntax is the same as used for_find
. (POST
only)_view
- Returns changes for documents that match an existing map function in the view specified by the query parameterview
.
Additionally, the value can be the name of a JS filter function from a design document. For example:
design_doc/filtername
.Note: For better performance use the built-in
_selector
,_design
or_doc_ids
filters rather than JS based_view
or design document filters. If you need to pass values to change the filtered content use the_selector
filter type.Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^_design|_docs_ids|_selector|_view|.*\/.*$/
Query parameter to specify the period in milliseconds after which an empty line is sent in the results. Off by default and only applicable for
continuous
andeventsource
feeds. Overrides any timeout to keep the feed alive indefinitely. May also betrue
to use a value of60000
.Note: Delivery of heartbeats cannot be relied on at specific intervals. If your application runs in an environment where idle network connections may break,
heartbeat
is not suitable as a keepalive mechanism. Instead, consider one of the following options:- Use the
timeout
parameter with a value that is compatible with your network environment. - Switch to scheduled usage of one of the non-continuous changes feed types
(
normal
orlongpoll
). - Use TCP keepalive.
Possible values: 1 ≤ value ≤ 60000
- Use the
Query parameter to specify whether to include the full content of the documents in the response.
Default:
false
Query parameter to specify the number of returned documents to limit the result to.
Possible values: 0 ≤ value ≤ 4294967295
Query parameter to specify that the update seq should only be calculated with every Nth result returned. When fetching changes in a batch, setting
seq_interval=<batch size>
, where <batch size> is the number of results requested per batch, load can be reduced on the source database as computing the seq value across many shards (especially in highly-sharded databases) is expensive.Possible values: 1 ≤ value ≤ 4294967295
Query parameter to specify to start the results from the change immediately after the given update sequence. Can be a valid update sequence or
now
value. Default is0
i.e. all changes.Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^0|([1-9]\\d*-[A-Za-z0-9-_]+)|now$/
Examples:0
Query parameter to specify how many revisions are returned in the changes array. The default,
main_only
, will only return the current "winning" revision; all_docs will return all leaf revisions (including conflicts and deleted former conflicts).Allowable values: [
main_only
,all_docs
]Default:
main_only
Query parameter to specify the maximum period in milliseconds to wait for a change before the response is sent, even if there are no results. Only applicable for
longpoll
orcontinuous
feeds. Default value is specified byhttpd/changes_timeout
configuration option. Note that60000
value is also the default maximum timeout to prevent undetected dead connections.Possible values: 0 ≤ value ≤ 60000
Default:
60000
Query parameter to specify a view function as a filter. Documents pass the filter if the view's map function emits at least one record for them.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^[^_].*$/
parameters
Path parameter to specify the database name.
Possible values: 1 ≤ length ≤ 238, Value must match regular expression
/^_dbs$|^_global_changes$|^_metadata$|^_nodes$|^_replicator$|^_users$|^[a-z][a-z0-9_$()+\/-]*$/
Schema for a list of document IDs.
Possible values: 0 ≤ number of items ≤ 65535, 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
Examples:JSON array that uses the field syntax. Use this parameter to specify which fields of a document must be returned. If it is omitted or empty, the entire document is returned.
Possible values: 0 ≤ number of items ≤ 65535, 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
JSON object describing criteria used to select documents. The selector specifies fields in the document, and provides an expression to evaluate with the field content or other data.
The selector object must:
- Be structured as valid JSON.
- Contain a valid query expression.
Using a selector is significantly more efficient than using a JavaScript filter function, and is the recommended option if filtering on document attributes only.
Elementary selector syntax requires you to specify one or more fields, and the corresponding values required for those fields. You can create more complex selector expressions by combining operators.
Operators are identified by the use of a dollar sign
$
prefix in the name field.There are two core types of operators in the selector syntax:
- Combination operators: applied at the topmost level of selection. They are used to combine selectors. A combination operator takes a single argument. The argument is either another selector, or an array of selectors.
- Condition operators: are specific to a field, and are used to evaluate the value stored in that field. For instance, the basic
$eq
operator matches when the specified field contains a value that is equal to the supplied argument.
It is important for query performance to use appropriate selectors:
- Only equality operators such as
$eq
,$gt
,$gte
,$lt
, and$lte
(but not$ne
) can be used as the basis of a query. You should include at least one of these in a selector. - Some operators such as
$not
,$or
,$in
, and$regex
cannot be answered from an index. For query selectors use these operators in conjunction with equality operators or create and use a partial index to reduce the number of documents that will need to be scanned.
See the Cloudant Docsfor a list of all available combination and conditional operators.
For further reference see selector syntax.
Header parameter to specify the ID of the last events received by the server on a previous connection. Overrides
since
query parameter.Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^0|([1-9]\\d*-[A-Za-z0-9-_]+)|now$/
Query parameter to specify whether to include the encoding information in attachment stubs if the particular attachment is compressed.
Default:
false
Query parameter to specify whether to include attachments bodies in a response.
Default:
false
Query parameter to specify whether to include a list of conflicted revisions in each returned document. Active only when
include_docs
istrue
.Default:
false
Query parameter to specify whether to return the documents in descending by key order.
Default:
false
Query parameter to specify the changes feed type.
Allowable values: [
continuous
,eventsource
,longpoll
,normal
]Default:
normal
Query parameter to specify a filter to emit only specific events from the changes stream.
The built-in filter types are:
_design
- Returns only changes to design documents._doc_ids
- Returns changes for documents with an ID matching one specified indoc_ids
request body parameter. (POST
only)_selector
- Returns changes for documents that match theselector
request body parameter. The selector syntax is the same as used for_find
. (POST
only)_view
- Returns changes for documents that match an existing map function in the view specified by the query parameterview
.
Additionally, the value can be the name of a JS filter function from a design document. For example:
design_doc/filtername
.Note: For better performance use the built-in
_selector
,_design
or_doc_ids
filters rather than JS based_view
or design document filters. If you need to pass values to change the filtered content use the_selector
filter type.Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^_design|_docs_ids|_selector|_view|.*\/.*$/
Query parameter to specify the period in milliseconds after which an empty line is sent in the results. Off by default and only applicable for
continuous
andeventsource
feeds. Overrides any timeout to keep the feed alive indefinitely. May also betrue
to use a value of60000
.Note: Delivery of heartbeats cannot be relied on at specific intervals. If your application runs in an environment where idle network connections may break,
heartbeat
is not suitable as a keepalive mechanism. Instead, consider one of the following options:- Use the
timeout
parameter with a value that is compatible with your network environment. - Switch to scheduled usage of one of the non-continuous changes feed types
(
normal
orlongpoll
). - Use TCP keepalive.
Possible values: 1 ≤ value ≤ 60000
- Use the
Query parameter to specify whether to include the full content of the documents in the response.
Default:
false
Query parameter to specify the number of returned documents to limit the result to.
Possible values: 0 ≤ value ≤ 4294967295
Query parameter to specify that the update seq should only be calculated with every Nth result returned. When fetching changes in a batch, setting
seq_interval=<batch size>
, where <batch size> is the number of results requested per batch, load can be reduced on the source database as computing the seq value across many shards (especially in highly-sharded databases) is expensive.Possible values: 1 ≤ value ≤ 4294967295
Query parameter to specify to start the results from the change immediately after the given update sequence. Can be a valid update sequence or
now
value. Default is0
i.e. all changes.Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^0|([1-9]\\d*-[A-Za-z0-9-_]+)|now$/
Examples:Query parameter to specify how many revisions are returned in the changes array. The default,
main_only
, will only return the current "winning" revision; all_docs will return all leaf revisions (including conflicts and deleted former conflicts).Allowable values: [
main_only
,all_docs
]Default:
main_only
Query parameter to specify the maximum period in milliseconds to wait for a change before the response is sent, even if there are no results. Only applicable for
longpoll
orcontinuous
feeds. Default value is specified byhttpd/changes_timeout
configuration option. Note that60000
value is also the default maximum timeout to prevent undetected dead connections.Possible values: 0 ≤ value ≤ 60000
Default:
60000
Query parameter to specify a view function as a filter. Documents pass the filter if the view's map function emits at least one record for them.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^[^_].*$/
parameters
Path parameter to specify the database name.
Possible values: 1 ≤ length ≤ 238, Value must match regular expression
/^_dbs$|^_global_changes$|^_metadata$|^_nodes$|^_replicator$|^_users$|^[a-z][a-z0-9_$()+\/-]*$/
Schema for a list of document IDs.
Possible values: 0 ≤ number of items ≤ 65535, 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
Examples:JSON array that uses the field syntax. Use this parameter to specify which fields of a document must be returned. If it is omitted or empty, the entire document is returned.
Possible values: 0 ≤ number of items ≤ 65535, 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
JSON object describing criteria used to select documents. The selector specifies fields in the document, and provides an expression to evaluate with the field content or other data.
The selector object must:
- Be structured as valid JSON.
- Contain a valid query expression.
Using a selector is significantly more efficient than using a JavaScript filter function, and is the recommended option if filtering on document attributes only.
Elementary selector syntax requires you to specify one or more fields, and the corresponding values required for those fields. You can create more complex selector expressions by combining operators.
Operators are identified by the use of a dollar sign
$
prefix in the name field.There are two core types of operators in the selector syntax:
- Combination operators: applied at the topmost level of selection. They are used to combine selectors. A combination operator takes a single argument. The argument is either another selector, or an array of selectors.
- Condition operators: are specific to a field, and are used to evaluate the value stored in that field. For instance, the basic
$eq
operator matches when the specified field contains a value that is equal to the supplied argument.
It is important for query performance to use appropriate selectors:
- Only equality operators such as
$eq
,$gt
,$gte
,$lt
, and$lte
(but not$ne
) can be used as the basis of a query. You should include at least one of these in a selector. - Some operators such as
$not
,$or
,$in
, and$regex
cannot be answered from an index. For query selectors use these operators in conjunction with equality operators or create and use a partial index to reduce the number of documents that will need to be scanned.
See the Cloudant Docsfor a list of all available combination and conditional operators.
For further reference see selector syntax.
Header parameter to specify the ID of the last events received by the server on a previous connection. Overrides
since
query parameter.Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^0|([1-9]\\d*-[A-Za-z0-9-_]+)|now$/
Query parameter to specify whether to include the encoding information in attachment stubs if the particular attachment is compressed.
Default:
false
Query parameter to specify whether to include attachments bodies in a response.
Default:
false
Query parameter to specify whether to include a list of conflicted revisions in each returned document. Active only when
include_docs
istrue
.Default:
false
Query parameter to specify whether to return the documents in descending by key order.
Default:
false
Query parameter to specify the changes feed type.
Allowable values: [
continuous
,eventsource
,longpoll
,normal
]Default:
normal
Query parameter to specify a filter to emit only specific events from the changes stream.
The built-in filter types are:
_design
- Returns only changes to design documents._doc_ids
- Returns changes for documents with an ID matching one specified indoc_ids
request body parameter. (POST
only)_selector
- Returns changes for documents that match theselector
request body parameter. The selector syntax is the same as used for_find
. (POST
only)_view
- Returns changes for documents that match an existing map function in the view specified by the query parameterview
.
Additionally, the value can be the name of a JS filter function from a design document. For example:
design_doc/filtername
.Note: For better performance use the built-in
_selector
,_design
or_doc_ids
filters rather than JS based_view
or design document filters. If you need to pass values to change the filtered content use the_selector
filter type.Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^_design|_docs_ids|_selector|_view|.*\/.*$/
Query parameter to specify the period in milliseconds after which an empty line is sent in the results. Off by default and only applicable for
continuous
andeventsource
feeds. Overrides any timeout to keep the feed alive indefinitely. May also betrue
to use a value of60000
.Note: Delivery of heartbeats cannot be relied on at specific intervals. If your application runs in an environment where idle network connections may break,
heartbeat
is not suitable as a keepalive mechanism. Instead, consider one of the following options:- Use the
timeout
parameter with a value that is compatible with your network environment. - Switch to scheduled usage of one of the non-continuous changes feed types
(
normal
orlongpoll
). - Use TCP keepalive.
Possible values: 1 ≤ value ≤ 60000
- Use the
Query parameter to specify whether to include the full content of the documents in the response.
Default:
false
Query parameter to specify the number of returned documents to limit the result to.
Possible values: 0 ≤ value ≤ 4294967295
Query parameter to specify that the update seq should only be calculated with every Nth result returned. When fetching changes in a batch, setting
seq_interval=<batch size>
, where <batch size> is the number of results requested per batch, load can be reduced on the source database as computing the seq value across many shards (especially in highly-sharded databases) is expensive.Possible values: 1 ≤ value ≤ 4294967295
Query parameter to specify to start the results from the change immediately after the given update sequence. Can be a valid update sequence or
now
value. Default is0
i.e. all changes.Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^0|([1-9]\\d*-[A-Za-z0-9-_]+)|now$/
Examples:Query parameter to specify how many revisions are returned in the changes array. The default,
main_only
, will only return the current "winning" revision; all_docs will return all leaf revisions (including conflicts and deleted former conflicts).Allowable values: [
main_only
,all_docs
]Default:
main_only
Query parameter to specify the maximum period in milliseconds to wait for a change before the response is sent, even if there are no results. Only applicable for
longpoll
orcontinuous
feeds. Default value is specified byhttpd/changes_timeout
configuration option. Note that60000
value is also the default maximum timeout to prevent undetected dead connections.Possible values: 0 ≤ value ≤ 60000
Default:
60000
Query parameter to specify a view function as a filter. Documents pass the filter if the view's map function emits at least one record for them.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^[^_].*$/
curl -H "Authorization: Bearer $API_BEARER_TOKEN" -X POST "$SERVICE_URL/orders/_changes" -H "Content-Type: application/json" --data '{ "doc_ids": [ "small-appliances:1000042" ] }'
import ( "encoding/json" "fmt" "github.com/IBM/cloudant-go-sdk/cloudantv1" )
service, err := cloudantv1.NewCloudantV1( &cloudantv1.CloudantV1Options{}, ) if err != nil { panic(err) } postChangesOptions := service.NewPostChangesOptions( "orders", ) changesResult, response, err := service.PostChanges(postChangesOptions) if err != nil { panic(err) } b, _ := json.MarshalIndent(changesResult, "", " ") fmt.Println(string(b))
import ( "encoding/json" "fmt" "io" "os" "github.com/IBM/cloudant-go-sdk/cloudantv1" )
service, err := cloudantv1.NewCloudantV1( &cloudantv1.CloudantV1Options{}, ) if err != nil { panic(err) } postChangesOptions := service.NewPostChangesOptions( "orders", ) changesResult, response, err := service.PostChangesAsStream(postChangesOptions) if err != nil { panic(err) } if changesResult != nil { defer changesResult.Close() outFile, err := os.Create("result.json") if err != nil { panic(err) } defer outFile.Close() if _, err = io.Copy(outFile, changesResult); err != nil { panic(err) } }
import com.ibm.cloud.cloudant.v1.Cloudant; import com.ibm.cloud.cloudant.v1.model.ChangesResult; import com.ibm.cloud.cloudant.v1.model.PostChangesOptions;
Cloudant service = Cloudant.newInstance(); PostChangesOptions changesOptions = new PostChangesOptions.Builder() .db("orders") .build(); ChangesResult response = service.postChanges(changesOptions).execute() .getResult(); System.out.println(response);
import com.ibm.cloud.cloudant.v1.Cloudant; import com.ibm.cloud.cloudant.v1.model.PostChangesOptions; import java.io.InputStream; import java.io.File; import java.nio.file.StandardCopyOption;
Cloudant service = Cloudant.newInstance(); PostChangesOptions changesOptions = new PostChangesOptions.Builder() .db("orders") .build(); File file = new File("result.json"); try (InputStream response = service.postChangesAsStream(changesOptions).execute() .getResult()) { java.nio.file.Files.copy( response, file.toPath(), StandardCopyOption.REPLACE_EXISTING); }
import { CloudantV1 } from '@ibm-cloud/cloudant'; const service = CloudantV1.newInstance({}); service.postChanges({ db: 'orders' }).then(response => { console.log(response.result); });
import { CloudantV1 } from '@ibm-cloud/cloudant'; const service = CloudantV1.newInstance({}); service.postChangesAsStream({ db: 'orders' }).then(response => { let stream = fs.createWriteStream("result.json"); response.result.pipe(stream); response.result.on('end', () => stream.end()); });
from ibmcloudant.cloudant_v1 import CloudantV1 service = CloudantV1.new_instance() response = service.post_changes( db='orders' ).get_result() print(response)
from ibmcloudant.cloudant_v1 import CloudantV1 service = CloudantV1.new_instance() result = service.post_changes_as_stream( db='orders' ).get_result() with open('result.json', 'wb') as f: for chunk in result.iter_content(): f.write(chunk)
Response
Response type for PostChanges
: ChangesResult
Response type for PostChangesAsStream
: io.ReadCloser
Response type for postChanges
: ChangesResult
Response type for postChangesAsStream
: InputStream
Response type for postChanges
: ChangesResult
Response type for postChangesAsStream
: NodeJS.ReadableStream
Response type for post_changes
: ChangesResult
Response type for post_changes_as_stream
: BinaryIO
Schema for normal changes feed result.
last_seq
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^0|([1-9]\d*-[A-Za-z0-9-_]+)|now$
pending
Possible values: 0 ≤ value ≤ 9007199254740992
results
Possible values: 0 ≤ number of items ≤ 4294967295
Schema for normal changes feed result.
last_seq.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^0|([1-9]\\d*-[A-Za-z0-9-_]+)|now$/
pending.
Possible values: 0 ≤ value ≤ 9007199254740992
results.
Possible values: number of items ≥ 0
- Results
List of document's leaves with single field rev.
Possible values: number of items ≥ 1
- Changes
Schema for a document revision identifier.
Possible values: 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
if
true
then the document is deleted.Schema for a document.
- Doc
Schema for a map of attachment name to attachment metadata.
- Attachments
Attachment MIME type.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+\/.+(?:;.+=.+)*$/
Base64-encoded content. Available if attachment content is requested by using the query parameters
attachments=true
oratts_since
. Note that when used with a view or changes feedinclude_docs
must also betrue
.Possible values: 1 ≤ length ≤ 13981014, Value must match regular expression
/^[A-Za-z0-9+\/]{2,}={0,3}$/
Content hash digest. It starts with prefix which announce hash type (e.g.
md5-
) and continues with Base64-encoded hash digest.Possible values: 28 ≤ length ≤ 7168, Value must match regular expression
/^[\\w\\d]+-[A-Za-z0-9+\/]{2,}={0,3}$/
Compressed attachment size in bytes. Available if content_type was in list of compressible types when the attachment was added and the query parameter
att_encoding_info
istrue
. Note that when used with a view or changes feedinclude_docs
must also betrue
.Possible values: 0 ≤ value ≤ 10485760
Compression codec. Available if content_type was in list of compressible types when the attachment was added and the and the query parameter
att_encoding_info
istrue
. Note that when used with a view or changes feedinclude_docs
must also betrue
.Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
True if the attachment follows in a multipart request or response.
Real attachment size in bytes. Not available if inline attachment content requested.
Possible values: 0 ≤ value ≤ 10485760
Revision number when attachment was added.
Possible values: 1 ≤ value ≤ 4294967295
Has
true
value if object contains stub info and no content. Otherwise omitted in response.
Schema for a list of document revision identifiers.
Possible values: number of items ≥ 0, 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
Deletion flag. Available if document was removed.
Schema for a list of document revision identifiers.
Possible values: number of items ≥ 0, 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
Schema for a document ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
Document's update sequence in current database. Available if requested with local_seq=true query parameter.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^0|([1-9]\\d*-[A-Za-z0-9-_]+)|now$/
Schema for a document revision identifier.
Possible values: 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
Schema for list of revision information.
- Revisions
Array of valid revision IDs, in reverse order (latest first).
Possible values: number of items ≥ 1, 1 ≤ length ≤ 7168, Value must match regular expression
/^[0-9a-fA-F]{32}$/
Prefix number for the latest revision.
Possible values: 1 ≤ value ≤ 4294967295
Schema for a list of objects with information about local revisions and their status.
Possible values: number of items ≥ 1
- RevsInfo
Schema for a document revision identifier.
Possible values: 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
Status of the revision. May be one of: -
available
: Revision is available for retrieving with rev query parameter -missing
: Revision is not available -deleted
: Revision belongs to deleted document.Possible values: [
available
,missing
,deleted
]
Schema for a document ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
Update sequence.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^0|([1-9]\\d*-[A-Za-z0-9-_]+)|now$/
Schema for normal changes feed result.
last_seq.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^0|([1-9]\\d*-[A-Za-z0-9-_]+)|now$/
pending.
Possible values: 0 ≤ value ≤ 9007199254740992
results.
Possible values: number of items ≥ 0
- results
List of document's leaves with single field rev.
Possible values: number of items ≥ 1
- changes
Schema for a document revision identifier.
Possible values: 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
if
true
then the document is deleted.Schema for a document.
- doc
Schema for a map of attachment name to attachment metadata.
- attachments
Attachment MIME type.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+\/.+(?:;.+=.+)*$/
Base64-encoded content. Available if attachment content is requested by using the query parameters
attachments=true
oratts_since
. Note that when used with a view or changes feedinclude_docs
must also betrue
.Possible values: 1 ≤ length ≤ 13981014, Value must match regular expression
/^[A-Za-z0-9+\/]{2,}={0,3}$/
Content hash digest. It starts with prefix which announce hash type (e.g.
md5-
) and continues with Base64-encoded hash digest.Possible values: 28 ≤ length ≤ 7168, Value must match regular expression
/^[\\w\\d]+-[A-Za-z0-9+\/]{2,}={0,3}$/
Compressed attachment size in bytes. Available if content_type was in list of compressible types when the attachment was added and the query parameter
att_encoding_info
istrue
. Note that when used with a view or changes feedinclude_docs
must also betrue
.Possible values: 0 ≤ value ≤ 10485760
Compression codec. Available if content_type was in list of compressible types when the attachment was added and the and the query parameter
att_encoding_info
istrue
. Note that when used with a view or changes feedinclude_docs
must also betrue
.Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
True if the attachment follows in a multipart request or response.
Real attachment size in bytes. Not available if inline attachment content requested.
Possible values: 0 ≤ value ≤ 10485760
Revision number when attachment was added.
Possible values: 1 ≤ value ≤ 4294967295
Has
true
value if object contains stub info and no content. Otherwise omitted in response.
Schema for a list of document revision identifiers.
Possible values: number of items ≥ 0, 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
Deletion flag. Available if document was removed.
Schema for a list of document revision identifiers.
Possible values: number of items ≥ 0, 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
Schema for a document ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
Document's update sequence in current database. Available if requested with local_seq=true query parameter.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^0|([1-9]\\d*-[A-Za-z0-9-_]+)|now$/
Schema for a document revision identifier.
Possible values: 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
Schema for list of revision information.
- revisions
Array of valid revision IDs, in reverse order (latest first).
Possible values: number of items ≥ 1, 1 ≤ length ≤ 7168, Value must match regular expression
/^[0-9a-fA-F]{32}$/
Prefix number for the latest revision.
Possible values: 1 ≤ value ≤ 4294967295
Schema for a list of objects with information about local revisions and their status.
Possible values: number of items ≥ 1
- revsInfo
Schema for a document revision identifier.
Possible values: 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
Status of the revision. May be one of: -
available
: Revision is available for retrieving with rev query parameter -missing
: Revision is not available -deleted
: Revision belongs to deleted document.Possible values: [
available
,missing
,deleted
]
Schema for a document ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
Update sequence.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^0|([1-9]\\d*-[A-Za-z0-9-_]+)|now$/
Schema for normal changes feed result.
last_seq.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^0|([1-9]\\d*-[A-Za-z0-9-_]+)|now$/
pending.
Possible values: 0 ≤ value ≤ 9007199254740992
results.
Possible values: number of items ≥ 0
- results
List of document's leaves with single field rev.
Possible values: number of items ≥ 1
- changes
Schema for a document revision identifier.
Possible values: 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
if
true
then the document is deleted.Schema for a document.
- doc
Schema for a map of attachment name to attachment metadata.
- _attachments
Attachment MIME type.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+\/.+(?:;.+=.+)*$/
Base64-encoded content. Available if attachment content is requested by using the query parameters
attachments=true
oratts_since
. Note that when used with a view or changes feedinclude_docs
must also betrue
.Possible values: 1 ≤ length ≤ 13981014, Value must match regular expression
/^[A-Za-z0-9+\/]{2,}={0,3}$/
Content hash digest. It starts with prefix which announce hash type (e.g.
md5-
) and continues with Base64-encoded hash digest.Possible values: 28 ≤ length ≤ 7168, Value must match regular expression
/^[\\w\\d]+-[A-Za-z0-9+\/]{2,}={0,3}$/
Compressed attachment size in bytes. Available if content_type was in list of compressible types when the attachment was added and the query parameter
att_encoding_info
istrue
. Note that when used with a view or changes feedinclude_docs
must also betrue
.Possible values: 0 ≤ value ≤ 10485760
Compression codec. Available if content_type was in list of compressible types when the attachment was added and the and the query parameter
att_encoding_info
istrue
. Note that when used with a view or changes feedinclude_docs
must also betrue
.Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
True if the attachment follows in a multipart request or response.
Real attachment size in bytes. Not available if inline attachment content requested.
Possible values: 0 ≤ value ≤ 10485760
Revision number when attachment was added.
Possible values: 1 ≤ value ≤ 4294967295
Has
true
value if object contains stub info and no content. Otherwise omitted in response.
Schema for a list of document revision identifiers.
Possible values: number of items ≥ 0, 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
Deletion flag. Available if document was removed.
Schema for a list of document revision identifiers.
Possible values: number of items ≥ 0, 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
Schema for a document ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
Document's update sequence in current database. Available if requested with local_seq=true query parameter.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^0|([1-9]\\d*-[A-Za-z0-9-_]+)|now$/
Schema for a document revision identifier.
Possible values: 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
Schema for list of revision information.
- _revisions
Array of valid revision IDs, in reverse order (latest first).
Possible values: number of items ≥ 1, 1 ≤ length ≤ 7168, Value must match regular expression
/^[0-9a-fA-F]{32}$/
Prefix number for the latest revision.
Possible values: 1 ≤ value ≤ 4294967295
Schema for a list of objects with information about local revisions and their status.
Possible values: number of items ≥ 1
- _revs_info
Schema for a document revision identifier.
Possible values: 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
Status of the revision. May be one of: -
available
: Revision is available for retrieving with rev query parameter -missing
: Revision is not available -deleted
: Revision belongs to deleted document.Possible values: [
available
,missing
,deleted
]
Schema for a document ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
Update sequence.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^0|([1-9]\\d*-[A-Za-z0-9-_]+)|now$/
Schema for normal changes feed result.
last_seq.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^0|([1-9]\\d*-[A-Za-z0-9-_]+)|now$/
pending.
Possible values: 0 ≤ value ≤ 9007199254740992
results.
Possible values: number of items ≥ 0
- results
List of document's leaves with single field rev.
Possible values: number of items ≥ 1
- changes
Schema for a document revision identifier.
Possible values: 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
if
true
then the document is deleted.Schema for a document.
- doc
Schema for a map of attachment name to attachment metadata.
- _attachments
Attachment MIME type.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+\/.+(?:;.+=.+)*$/
Base64-encoded content. Available if attachment content is requested by using the query parameters
attachments=true
oratts_since
. Note that when used with a view or changes feedinclude_docs
must also betrue
.Possible values: 1 ≤ length ≤ 13981014, Value must match regular expression
/^[A-Za-z0-9+\/]{2,}={0,3}$/
Content hash digest. It starts with prefix which announce hash type (e.g.
md5-
) and continues with Base64-encoded hash digest.Possible values: 28 ≤ length ≤ 7168, Value must match regular expression
/^[\\w\\d]+-[A-Za-z0-9+\/]{2,}={0,3}$/
Compressed attachment size in bytes. Available if content_type was in list of compressible types when the attachment was added and the query parameter
att_encoding_info
istrue
. Note that when used with a view or changes feedinclude_docs
must also betrue
.Possible values: 0 ≤ value ≤ 10485760
Compression codec. Available if content_type was in list of compressible types when the attachment was added and the and the query parameter
att_encoding_info
istrue
. Note that when used with a view or changes feedinclude_docs
must also betrue
.Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
True if the attachment follows in a multipart request or response.
Real attachment size in bytes. Not available if inline attachment content requested.
Possible values: 0 ≤ value ≤ 10485760
Revision number when attachment was added.
Possible values: 1 ≤ value ≤ 4294967295
Has
true
value if object contains stub info and no content. Otherwise omitted in response.
Schema for a list of document revision identifiers.
Possible values: number of items ≥ 0, 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
Deletion flag. Available if document was removed.
Schema for a list of document revision identifiers.
Possible values: number of items ≥ 0, 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
Schema for a document ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
Document's update sequence in current database. Available if requested with local_seq=true query parameter.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^0|([1-9]\\d*-[A-Za-z0-9-_]+)|now$/
Schema for a document revision identifier.
Possible values: 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
Schema for list of revision information.
- _revisions
Array of valid revision IDs, in reverse order (latest first).
Possible values: number of items ≥ 1, 1 ≤ length ≤ 7168, Value must match regular expression
/^[0-9a-fA-F]{32}$/
Prefix number for the latest revision.
Possible values: 1 ≤ value ≤ 4294967295
Schema for a list of objects with information about local revisions and their status.
Possible values: number of items ≥ 1
- _revs_info
Schema for a document revision identifier.
Possible values: 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
Status of the revision. May be one of: -
available
: Revision is available for retrieving with rev query parameter -missing
: Revision is not available -deleted
: Revision belongs to deleted document.Possible values: [
available
,missing
,deleted
]
Schema for a document ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
Update sequence.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^0|([1-9]\\d*-[A-Za-z0-9-_]+)|now$/
Status Code
HTTP response for
/{db}/_changes
style operations.HTTP error for bad request.
HTTP error for unauthorized.
HTTP error for payment required.
HTTP error for forbidden.
HTTP error for not found.
HTTP error for timeout reading client request.
HTTP error for gone.
HTTP error for payload too large.
HTTP error for unsupported media type.
HTTP error for too many requests.
HTTP error for internal server error.
HTTP error for bad gateway.
HTTP error for service unavailable.
HTTP error for gateway timeout.
Example ChangesResult response.
{ "last_seq": "7-g1AAAAPveJy1kk9OAjEYxSuYGBO3nsCdC9LOP5yVXkGhB-jXdoKTsSQG1p7CKyj0Ep6CS3AGob5hwYSNMJOwek3T971fXr-KMXYz6Rt2Z0hP3-2ToWygq-ncKDfjXOzPA2dnFR73FKNbKcelYoe2-H9bbZJ07_2ynPTVxRvurjTPhU6i06YcpkVH0hDk6TGEbWtOmAKBddRwUpw-iKE4ByeCxlR6v2jNCdOSPkLY1JxsxykyLlKuDLueO2OLV2dNq6-tx23dJXuR8rMtD2wj2CDfqL5m6u2Ycp1HQ5N26e4ILaIWiIL8hvDTgXcDG-RZylXDm8V5IbLkPLwodgX58n7dgRfFriHYz9DsZpqQtQWdNqn8A1TdTOE", "pending": 3, "results": [ { "changes": [ { "rev": "7-7a5191bfeb2f6eed6b3b6fa83f4810f5" } ], "deleted": true, "id": "0007741142412418284", "seq": "1-g1AAAAMFeJydkcENgjAUhquYePHqBN48EEBj4klXUOgAbSExDUJi8OwUrqDQJZyCJZhBqD8XE0Iiwulvmvf1e68vJITMToZPFj4X8SXY-3xjijC--ixKLMv-ns0oSEIUjxnhc0o9yUgTW_3GaojypVKZPBlsdMbdVFhbW6yd_15p2pwOG0SK77SuevcJSHP06rbILicgj0ul0t5OQBm_aV22yI5l1FAVTciR0ntfKzAXGOKJz-prBpYCQ7y1fg1wl8AQB0rzAW4MnCMeShUD3Bi4QGDTGrT8AMkPBk0" } ] }
Example ChangesResult response.
{ "last_seq": "7-g1AAAAPveJy1kk9OAjEYxSuYGBO3nsCdC9LOP5yVXkGhB-jXdoKTsSQG1p7CKyj0Ep6CS3AGob5hwYSNMJOwek3T971fXr-KMXYz6Rt2Z0hP3-2ToWygq-ncKDfjXOzPA2dnFR73FKNbKcelYoe2-H9bbZJ07_2ynPTVxRvurjTPhU6i06YcpkVH0hDk6TGEbWtOmAKBddRwUpw-iKE4ByeCxlR6v2jNCdOSPkLY1JxsxykyLlKuDLueO2OLV2dNq6-tx23dJXuR8rMtD2wj2CDfqL5m6u2Ycp1HQ5N26e4ILaIWiIL8hvDTgXcDG-RZylXDm8V5IbLkPLwodgX58n7dgRfFriHYz9DsZpqQtQWdNqn8A1TdTOE", "pending": 3, "results": [ { "changes": [ { "rev": "7-7a5191bfeb2f6eed6b3b6fa83f4810f5" } ], "deleted": true, "id": "0007741142412418284", "seq": "1-g1AAAAMFeJydkcENgjAUhquYePHqBN48EEBj4klXUOgAbSExDUJi8OwUrqDQJZyCJZhBqD8XE0Iiwulvmvf1e68vJITMToZPFj4X8SXY-3xjijC--ixKLMv-ns0oSEIUjxnhc0o9yUgTW_3GaojypVKZPBlsdMbdVFhbW6yd_15p2pwOG0SK77SuevcJSHP06rbILicgj0ul0t5OQBm_aV22yI5l1FAVTciR0ntfKzAXGOKJz-prBpYCQ7y1fg1wl8AQB0rzAW4MnCMeShUD3Bi4QGDTGrT8AMkPBk0" } ] }
Example error response for a bad request.
{ "error": "bad_request", "reason": "Bad request." }
Example error response for a bad request.
{ "error": "bad_request", "reason": "Bad request." }
Example error response for reader access is required for this request.
{ "error": "unauthorized", "reason": "_reader access is required for this request." }
Example error response for reader access is required for this request.
{ "error": "unauthorized", "reason": "_reader access is required for this request." }
Example error response for incorrect credentials.
{ "error": "unauthorized", "reason": "Name or password is incorrect." }
Example error response for incorrect credentials.
{ "error": "unauthorized", "reason": "Name or password is incorrect." }
Example error response when payment is required. For example, if the data quota of the plan is exceeded.
{ "error": "payment_required", "reason": "Payment required" }
Example error response when payment is required. For example, if the data quota of the plan is exceeded.
{ "error": "payment_required", "reason": "Payment required" }
Example error response for a forbidden request.
{ "error": "forbidden", "reason": "server_admin access is required for this request" }
Example error response for a forbidden request.
{ "error": "forbidden", "reason": "server_admin access is required for this request" }
Example error response for an account temporarily locked out.
{ "error": "forbidden", "reason": "Account is temporarily locked due to multiple authentication failures" }
Example error response for an account temporarily locked out.
{ "error": "forbidden", "reason": "Account is temporarily locked due to multiple authentication failures" }
Example error response for a not found request.
{ "error": "not_found", "reason": "missing" }
Example error response for a not found request.
{ "error": "not_found", "reason": "missing" }
Example error response for timeout reading client request.
{ "error": "request_timeout", "reason": "Request timeout" }
Example error response for timeout reading client request.
{ "error": "request_timeout", "reason": "Request timeout" }
Example error response for gone.
{ "error": "gone", "reason": "The requested resource is no longer located here, verify your DNS settings." }
Example error response for gone.
{ "error": "gone", "reason": "The requested resource is no longer located here, verify your DNS settings." }
Example error response for a request size that exceeds the limit.
{ "error": "too_large", "reason": "the request entity is too large" }
Example error response for a request size that exceeds the limit.
{ "error": "too_large", "reason": "the request entity is too large" }
Example error response for unsupported media type.
{ "error": "bad_content_type", "reason": "Content-Type must be application/json" }
Example error response for unsupported media type.
{ "error": "bad_content_type", "reason": "Content-Type must be application/json" }
Example error response for too many requests.
{ "error": "too_many_requests", "reason": "You've exceeded your rate limit allowance. Please try again later." }
Example error response for too many requests.
{ "error": "too_many_requests", "reason": "You've exceeded your rate limit allowance. Please try again later." }
Example error response for an unknown server error.
{ "error": "unknown_error", "reason": "function_clause", "ref": 2632214382 }
Example error response for an unknown server error.
{ "error": "unknown_error", "reason": "function_clause", "ref": 2632214382 }
Example error response for bad gateway.
{ "error": "bad_gateway", "reason": "Bad gateway" }
Example error response for bad gateway.
{ "error": "bad_gateway", "reason": "Bad gateway" }
Example error response for service unavailable.
{ "error": "service_unavailable", "reason": "Service unavailable" }
Example error response for service unavailable.
{ "error": "service_unavailable", "reason": "Service unavailable" }
Example error response for gateway timeout.
{ "error": "gateway_timeout", "reason": "Gateway timeout" }
Example error response for gateway timeout.
{ "error": "gateway_timeout", "reason": "Gateway timeout" }
Create or modify a document in a database
Creates or modifies a document in the specified database by using the supplied JSON document.
For creation, you may specify the document ID but you should not specify the revision. If you don't specify the document ID, then the server generates an ID for your document.
For modification, you must specify the document ID and a revision identifier in the JSON document.
If your document ID includes the _local/
or _design/
prefix, then
this operation creates or modifies a local or a design document
respectively.
Creates or modifies a document in the specified database by using the supplied JSON document.
For creation, you may specify the document ID but you should not specify the revision. If you don't specify the document ID, then the server generates an ID for your document.
For modification, you must specify the document ID and a revision identifier in the JSON document.
If your document ID includes the _local/
or _design/
prefix, then this operation creates or modifies a local or a design document respectively.
Creates or modifies a document in the specified database by using the supplied JSON document.
For creation, you may specify the document ID but you should not specify the revision. If you don't specify the document ID, then the server generates an ID for your document.
For modification, you must specify the document ID and a revision identifier in the JSON document.
If your document ID includes the _local/
or _design/
prefix, then this operation creates or modifies a local or a design document respectively.
Creates or modifies a document in the specified database by using the supplied JSON document.
For creation, you may specify the document ID but you should not specify the revision. If you don't specify the document ID, then the server generates an ID for your document.
For modification, you must specify the document ID and a revision identifier in the JSON document.
If your document ID includes the _local/
or _design/
prefix, then this operation creates or modifies a local or a design document respectively.
Creates or modifies a document in the specified database by using the supplied JSON document.
For creation, you may specify the document ID but you should not specify the revision. If you don't specify the document ID, then the server generates an ID for your document.
For modification, you must specify the document ID and a revision identifier in the JSON document.
If your document ID includes the _local/
or _design/
prefix, then this operation creates or modifies a local or a design document respectively.
POST /{db}
(cloudant *CloudantV1) PostDocument(postDocumentOptions *PostDocumentOptions) (result *DocumentResult, response *core.DetailedResponse, err error)
(cloudant *CloudantV1) PostDocumentWithContext(ctx context.Context, postDocumentOptions *PostDocumentOptions) (result *DocumentResult, response *core.DetailedResponse, err error)
ServiceCall<DocumentResult> postDocument(PostDocumentOptions postDocumentOptions)
postDocument(params)
post_document(
self,
db: str,
document: Union['Document', BinaryIO],
*,
content_type: Optional[str] = None,
batch: Optional[str] = None,
**kwargs,
) -> DetailedResponse
Request
Instantiate the PostDocumentOptions
struct and set the fields to provide parameter values for the PostDocument
method.
Use the PostDocumentOptions.Builder
to create a PostDocumentOptions
object that contains the parameter values for the postDocument
method.
Custom Headers
Set a unique identifier to trace a request.
Possible values: length = 36, Value must match regular expression
^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-4[0-9a-fA-F]{3}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$
Allowable values: [
application/json
,multipart/mixed
,multipart/related
]
Path Parameters
Path parameter to specify the database name.
Possible values: 1 ≤ length ≤ 238, Value must match regular expression
^_dbs$|^_global_changes$|^_metadata$|^_nodes$|^_replicator$|^_users$|^[a-z][a-z0-9_$()+/-]*$
Query Parameters
Query parameter to specify whether to store in batch mode. The server will respond with a HTTP 202 Accepted response code immediately.
Allowable values: [
ok
]
HTTP request body for Document operations.
Example Document.
{
"_id": "exampleid",
"brand": "Foo",
"colours": [
"red",
"green",
"black",
"blue"
],
"description": "Slim Colourful Design Electronic Cooking Appliance for ...",
"image": "assets/img/0gmsnghhew.jpg",
"keywords": [
"Foo",
"Scales",
"Weight",
"Digital",
"Kitchen"
],
"name": "Digital Kitchen Scales",
"price": 14.99,
"productid": "1000042",
"taxonomy": [
"Home",
"Kitchen",
"Small Appliances"
],
"type": "product"
}
Schema for a map of attachment name to attachment metadata.
- _attachments
Schema for an attachment.
Schema for a list of document revision identifiers.
Possible values: 0 ≤ number of items ≤ 4294967295, 34 ≤ length ≤ 43, Value must match regular expression
^[1-9]\d{0,9}-[\da-f]{32}$
Deletion flag. Available if document was removed
Schema for a list of document revision identifiers.
Possible values: 0 ≤ number of items ≤ 4294967295, 34 ≤ length ≤ 43, Value must match regular expression
^[1-9]\d{0,9}-[\da-f]{32}$
Schema for a document ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^([^_]|_(design|local)\/).+$
Document's update sequence in current database. Available if requested with local_seq=true query parameter
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^0|([1-9]\d*-[A-Za-z0-9-_]+)|now$
Schema for a document revision identifier.
Possible values: 34 ≤ length ≤ 43, Value must match regular expression
^[1-9]\d{0,9}-[\da-f]{32}$
Schema for list of revision information.
Schema for a list of objects with information about local revisions and their status.
Possible values: 1 ≤ number of items ≤ 4294967295
WithContext method only
A context.Context instance that you can use to specify a timeout for the operation or to cancel an in-flight request.
The PostDocument options.
Path parameter to specify the database name.
Possible values: 1 ≤ length ≤ 238, Value must match regular expression
/^_dbs$|^_global_changes$|^_metadata$|^_nodes$|^_replicator$|^_users$|^[a-z][a-z0-9_$()+\/-]*$/
HTTP request body for Document operations.
Examples:{ "_id": "exampleid", "brand": "Foo", "colours": [ "red", "green", "black", "blue" ], "description": "Slim Colourful Design Electronic Cooking Appliance for ...", "image": "assets/img/0gmsnghhew.jpg", "keywords": [ "Foo", "Scales", "Weight", "Digital", "Kitchen" ], "name": "Digital Kitchen Scales", "price": 14.99, "productid": "1000042", "taxonomy": [ "Home", "Kitchen", "Small Appliances" ], "type": "product" }
- Document
Schema for a map of attachment name to attachment metadata.
- Attachments
Attachment MIME type.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+\/.+(?:;.+=.+)*$/
Base64-encoded content. Available if attachment content is requested by using the query parameters
attachments=true
oratts_since
. Note that when used with a view or changes feedinclude_docs
must also betrue
.Possible values: 1 ≤ length ≤ 13981014, Value must match regular expression
/^[A-Za-z0-9+\/]{2,}={0,3}$/
Content hash digest. It starts with prefix which announce hash type (e.g.
md5-
) and continues with Base64-encoded hash digest.Possible values: 28 ≤ length ≤ 7168, Value must match regular expression
/^[\\w\\d]+-[A-Za-z0-9+\/]{2,}={0,3}$/
Compressed attachment size in bytes. Available if content_type was in list of compressible types when the attachment was added and the query parameter
att_encoding_info
istrue
. Note that when used with a view or changes feedinclude_docs
must also betrue
.Possible values: 0 ≤ value ≤ 10485760
Compression codec. Available if content_type was in list of compressible types when the attachment was added and the and the query parameter
att_encoding_info
istrue
. Note that when used with a view or changes feedinclude_docs
must also betrue
.Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
True if the attachment follows in a multipart request or response.
Real attachment size in bytes. Not available if inline attachment content requested.
Possible values: 0 ≤ value ≤ 10485760
Revision number when attachment was added.
Possible values: 1 ≤ value ≤ 4294967295
Has
true
value if object contains stub info and no content. Otherwise omitted in response.
Schema for a list of document revision identifiers.
Possible values: number of items ≥ 0, 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
Deletion flag. Available if document was removed.
Schema for a list of document revision identifiers.
Possible values: number of items ≥ 0, 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
Schema for a document ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
Document's update sequence in current database. Available if requested with local_seq=true query parameter.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^0|([1-9]\\d*-[A-Za-z0-9-_]+)|now$/
Schema for a document revision identifier.
Possible values: 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
Schema for list of revision information.
- Revisions
Array of valid revision IDs, in reverse order (latest first).
Possible values: number of items ≥ 1, 1 ≤ length ≤ 7168, Value must match regular expression
/^[0-9a-fA-F]{32}$/
Prefix number for the latest revision.
Possible values: 1 ≤ value ≤ 4294967295
Schema for a list of objects with information about local revisions and their status.
Possible values: number of items ≥ 1
- RevsInfo
Schema for a document revision identifier.
Possible values: 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
Status of the revision. May be one of: -
available
: Revision is available for retrieving with rev query parameter -missing
: Revision is not available -deleted
: Revision belongs to deleted document.Allowable values: [
available
,missing
,deleted
]
HTTP request body for Document operations.
The type of the input.
Allowable values: [
application/json
,multipart/mixed
,multipart/related
,application/octet-stream
]Default:
application/json
Query parameter to specify whether to store in batch mode. The server will respond with a HTTP 202 Accepted response code immediately.
Allowable values: [
ok
]
The postDocument options.
Path parameter to specify the database name.
Possible values: 1 ≤ length ≤ 238, Value must match regular expression
/^_dbs$|^_global_changes$|^_metadata$|^_nodes$|^_replicator$|^_users$|^[a-z][a-z0-9_$()+\/-]*$/
HTTP request body for Document operations.
Examples:{ "_id": "exampleid", "brand": "Foo", "colours": [ "red", "green", "black", "blue" ], "description": "Slim Colourful Design Electronic Cooking Appliance for ...", "image": "assets/img/0gmsnghhew.jpg", "keywords": [ "Foo", "Scales", "Weight", "Digital", "Kitchen" ], "name": "Digital Kitchen Scales", "price": 14.99, "productid": "1000042", "taxonomy": [ "Home", "Kitchen", "Small Appliances" ], "type": "product" }
- document
Schema for a map of attachment name to attachment metadata.
- attachments
Attachment MIME type.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+\/.+(?:;.+=.+)*$/
Base64-encoded content. Available if attachment content is requested by using the query parameters
attachments=true
oratts_since
. Note that when used with a view or changes feedinclude_docs
must also betrue
.Possible values: 1 ≤ length ≤ 13981014, Value must match regular expression
/^[A-Za-z0-9+\/]{2,}={0,3}$/
Content hash digest. It starts with prefix which announce hash type (e.g.
md5-
) and continues with Base64-encoded hash digest.Possible values: 28 ≤ length ≤ 7168, Value must match regular expression
/^[\\w\\d]+-[A-Za-z0-9+\/]{2,}={0,3}$/
Compressed attachment size in bytes. Available if content_type was in list of compressible types when the attachment was added and the query parameter
att_encoding_info
istrue
. Note that when used with a view or changes feedinclude_docs
must also betrue
.Possible values: 0 ≤ value ≤ 10485760
Compression codec. Available if content_type was in list of compressible types when the attachment was added and the and the query parameter
att_encoding_info
istrue
. Note that when used with a view or changes feedinclude_docs
must also betrue
.Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
True if the attachment follows in a multipart request or response.
Real attachment size in bytes. Not available if inline attachment content requested.
Possible values: 0 ≤ value ≤ 10485760
Revision number when attachment was added.
Possible values: 1 ≤ value ≤ 4294967295
Has
true
value if object contains stub info and no content. Otherwise omitted in response.
Schema for a list of document revision identifiers.
Possible values: number of items ≥ 0, 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
Deletion flag. Available if document was removed.
Schema for a list of document revision identifiers.
Possible values: number of items ≥ 0, 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
Schema for a document ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
Document's update sequence in current database. Available if requested with local_seq=true query parameter.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^0|([1-9]\\d*-[A-Za-z0-9-_]+)|now$/
Schema for a document revision identifier.
Possible values: 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
Schema for list of revision information.
- revisions
Array of valid revision IDs, in reverse order (latest first).
Possible values: number of items ≥ 1, 1 ≤ length ≤ 7168, Value must match regular expression
/^[0-9a-fA-F]{32}$/
Prefix number for the latest revision.
Possible values: 1 ≤ value ≤ 4294967295
Schema for a list of objects with information about local revisions and their status.
Possible values: number of items ≥ 1
- revsInfo
Schema for a document revision identifier.
Possible values: 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
Status of the revision. May be one of: -
available
: Revision is available for retrieving with rev query parameter -missing
: Revision is not available -deleted
: Revision belongs to deleted document.Allowable values: [
available
,missing
,deleted
]
HTTP request body for Document operations.
The type of the input.
Allowable values: [
application/json
,multipart/mixed
,multipart/related
,application/octet-stream
]Default:
application/json
Query parameter to specify whether to store in batch mode. The server will respond with a HTTP 202 Accepted response code immediately.
Allowable values: [
ok
]
parameters
Path parameter to specify the database name.
Possible values: 1 ≤ length ≤ 238, Value must match regular expression
/^_dbs$|^_global_changes$|^_metadata$|^_nodes$|^_replicator$|^_users$|^[a-z][a-z0-9_$()+\/-]*$/
HTTP request body for Document operations.
Examples:- document
Schema for a map of attachment name to attachment metadata.
- _attachments
Attachment MIME type.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+\/.+(?:;.+=.+)*$/
Base64-encoded content. Available if attachment content is requested by using the query parameters
attachments=true
oratts_since
. Note that when used with a view or changes feedinclude_docs
must also betrue
.Possible values: 1 ≤ length ≤ 13981014, Value must match regular expression
/^[A-Za-z0-9+\/]{2,}={0,3}$/
Content hash digest. It starts with prefix which announce hash type (e.g.
md5-
) and continues with Base64-encoded hash digest.Possible values: 28 ≤ length ≤ 7168, Value must match regular expression
/^[\\w\\d]+-[A-Za-z0-9+\/]{2,}={0,3}$/
Compressed attachment size in bytes. Available if content_type was in list of compressible types when the attachment was added and the query parameter
att_encoding_info
istrue
. Note that when used with a view or changes feedinclude_docs
must also betrue
.Possible values: 0 ≤ value ≤ 10485760
Compression codec. Available if content_type was in list of compressible types when the attachment was added and the and the query parameter
att_encoding_info
istrue
. Note that when used with a view or changes feedinclude_docs
must also betrue
.Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
True if the attachment follows in a multipart request or response.
Real attachment size in bytes. Not available if inline attachment content requested.
Possible values: 0 ≤ value ≤ 10485760
Revision number when attachment was added.
Possible values: 1 ≤ value ≤ 4294967295
Has
true
value if object contains stub info and no content. Otherwise omitted in response.
Schema for a list of document revision identifiers.
Possible values: number of items ≥ 0, 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
Deletion flag. Available if document was removed.
Schema for a list of document revision identifiers.
Possible values: number of items ≥ 0, 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
Schema for a document ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
Document's update sequence in current database. Available if requested with local_seq=true query parameter.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^0|([1-9]\\d*-[A-Za-z0-9-_]+)|now$/
Schema for a document revision identifier.
Possible values: 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
Schema for list of revision information.
- _revisions
Array of valid revision IDs, in reverse order (latest first).
Possible values: number of items ≥ 1, 1 ≤ length ≤ 7168, Value must match regular expression
/^[0-9a-fA-F]{32}$/
Prefix number for the latest revision.
Possible values: 1 ≤ value ≤ 4294967295
Schema for a list of objects with information about local revisions and their status.
Possible values: number of items ≥ 1
- _revs_info
Schema for a document revision identifier.
Possible values: 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
Status of the revision. May be one of: -
available
: Revision is available for retrieving with rev query parameter -missing
: Revision is not available -deleted
: Revision belongs to deleted document.Allowable values: [
available
,missing
,deleted
]
The type of the input.
Allowable values: [
application/json
,multipart/mixed
,multipart/related
,application/octet-stream
]Default:
application/json
Query parameter to specify whether to store in batch mode. The server will respond with a HTTP 202 Accepted response code immediately.
Allowable values: [
ok
]
parameters
Path parameter to specify the database name.
Possible values: 1 ≤ length ≤ 238, Value must match regular expression
/^_dbs$|^_global_changes$|^_metadata$|^_nodes$|^_replicator$|^_users$|^[a-z][a-z0-9_$()+\/-]*$/
Schema for a document.
- document
Schema for a map of attachment name to attachment metadata.
- _attachments
Attachment MIME type.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+\/.+(?:;.+=.+)*$/
Base64-encoded content. Available if attachment content is requested by using the query parameters
attachments=true
oratts_since
. Note that when used with a view or changes feedinclude_docs
must also betrue
.Possible values: 1 ≤ length ≤ 13981014, Value must match regular expression
/^[A-Za-z0-9+\/]{2,}={0,3}$/
Content hash digest. It starts with prefix which announce hash type (e.g.
md5-
) and continues with Base64-encoded hash digest.Possible values: 28 ≤ length ≤ 7168, Value must match regular expression
/^[\\w\\d]+-[A-Za-z0-9+\/]{2,}={0,3}$/
Compressed attachment size in bytes. Available if content_type was in list of compressible types when the attachment was added and the query parameter
att_encoding_info
istrue
. Note that when used with a view or changes feedinclude_docs
must also betrue
.Possible values: 0 ≤ value ≤ 10485760
Compression codec. Available if content_type was in list of compressible types when the attachment was added and the and the query parameter
att_encoding_info
istrue
. Note that when used with a view or changes feedinclude_docs
must also betrue
.Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
True if the attachment follows in a multipart request or response.
Real attachment size in bytes. Not available if inline attachment content requested.
Possible values: 0 ≤ value ≤ 10485760
Revision number when attachment was added.
Possible values: 1 ≤ value ≤ 4294967295
Has
true
value if object contains stub info and no content. Otherwise omitted in response.
Schema for a list of document revision identifiers.
Possible values: number of items ≥ 0, 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
Deletion flag. Available if document was removed.
Schema for a list of document revision identifiers.
Possible values: number of items ≥ 0, 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
Schema for a document ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
Document's update sequence in current database. Available if requested with local_seq=true query parameter.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^0|([1-9]\\d*-[A-Za-z0-9-_]+)|now$/
Schema for a document revision identifier.
Possible values: 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
Schema for list of revision information.
- _revisions
Array of valid revision IDs, in reverse order (latest first).
Possible values: number of items ≥ 1, 1 ≤ length ≤ 7168, Value must match regular expression
/^[0-9a-fA-F]{32}$/
Prefix number for the latest revision.
Possible values: 1 ≤ value ≤ 4294967295
Schema for a list of objects with information about local revisions and their status.
Possible values: number of items ≥ 1
- _revs_info
Schema for a document revision identifier.
Possible values: 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
Status of the revision. May be one of: -
available
: Revision is available for retrieving with rev query parameter -missing
: Revision is not available -deleted
: Revision belongs to deleted document.Allowable values: [
available
,missing
,deleted
]
The type of the input.
Allowable values: [
application/json
,multipart/mixed
,multipart/related
,application/octet-stream
]Default:
application/json
Query parameter to specify whether to store in batch mode. The server will respond with a HTTP 202 Accepted response code immediately.
Allowable values: [
ok
]
curl -H "Authorization: Bearer $API_BEARER_TOKEN" -X POST "$SERVICE_URL/products" -H "Content-Type: application/json" --data '{ "_id": "small-appliances:1000042", "type": "product", "productid": "1000042", "brand": "Salter", "name": "Digital Kitchen Scales", "description": "Slim Colourful Design Electronic Cooking Appliance for Home / Kitchen, Weigh up to 5kg + Aquatronic for Liquids ml + fl. oz. 15Yr Guarantee - Green", "price: 14.99, "image": "assets/img/0gmsnghhew.jpg" }'
import ( "encoding/json" "fmt" "github.com/IBM/cloudant-go-sdk/cloudantv1" "github.com/IBM/go-sdk-core/v5/core" )
service, err := cloudantv1.NewCloudantV1( &cloudantv1.CloudantV1Options{}, ) if err != nil { panic(err) } productsDoc := cloudantv1.Document{ ID: core.StringPtr("1000042"), } productsDoc.SetProperty("type", "product") productsDoc.SetProperty("productId", "1000042") productsDoc.SetProperty("brand", "Salter") productsDoc.SetProperty("name", "Digital Kitchen Scales") productsDoc.SetProperty("description", "Slim Colourful Design Electronic Cooking Appliance for Home / Kitchen, Weigh up to 5kg + Aquatronic for Liquids ml + fl. oz. 15Yr Guarantee - Green") productsDoc.SetProperty("price", 14.99) productsDoc.SetProperty("image", "assets/img/0gmsnghhew.jpg") postDocumentOptions := service.NewPostDocumentOptions( "products", ) postDocumentOptions.SetDocument(&productsDoc) documentResult, response, err := service.PostDocument(postDocumentOptions) if err != nil { panic(err) } b, _ := json.MarshalIndent(documentResult, "", " ") fmt.Println(string(b))
import com.ibm.cloud.cloudant.v1.Cloudant; import com.ibm.cloud.cloudant.v1.model.Document; import com.ibm.cloud.cloudant.v1.model.DocumentResult; import com.ibm.cloud.cloudant.v1.model.PostDocumentOptions;
Cloudant service = Cloudant.newInstance(); Document productsDocument = new Document(); productsDocument.setId("1000042"); productsDocument.put("type", "product"); productsDocument.put("productId", "1000042"); productsDocument.put("brand", "Salter"); productsDocument.put("name", "Digital Kitchen Scales"); productsDocument.put("description", "Slim Colourful Design Electronic" + "Cooking Appliance for Home / Kitchen, Weigh up to 5kg + Aquatronic" + "for Liquids ml + fl. oz. 15Yr Guarantee - Green"); productsDocument.put("price", 14.99); productsDocument.put("image", "assets/img/0gmsnghhew.jpg"); PostDocumentOptions documentOptions = new PostDocumentOptions.Builder() .db("products") .document(productsDocument) .build(); DocumentResult response = service.postDocument(documentOptions).execute() .getResult(); System.out.println(response);
import { CloudantV1 } from '@ibm-cloud/cloudant'; const service = CloudantV1.newInstance({}); const productsDoc: CloudantV1.Document = { _id: '1000042', type: 'product', productId: '1000042', brand: 'Salter', name: 'Digital Kitchen Scales', description: 'Slim Colourful Design Electronic Cooking Appliance for Home / Kitchen, Weigh up to 5kg + Aquatronic for Liquids ml + fl. oz. 15Yr Guarantee - Green', price: 14.99, image: 'assets/img/0gmsnghhew.jpg' }; service.postDocument({ db: 'products', document: productsDoc }).then(response => { console.log(response.result); });
from ibmcloudant.cloudant_v1 import Document, CloudantV1 service = CloudantV1.new_instance() products_doc = Document( _id="1000042", type="product", productId="1000042", brand="Salter", name="Digital Kitchen Scales", description="Slim Colourful Design Electronic Cooking Appliance for Home / Kitchen, Weigh up to 5kg + Aquatronic for Liquids ml + fl. oz. 15Yr Guarantee - Green", price=14.99, image="assets/img/0gmsnghhew.jpg") response = service.post_document(db='products', document=products_doc).get_result() print(response)
Response
Schema for the result of a document modification.
Schema for a document ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^([^_]|_(design|local)\/).+$
Schema for a document revision identifier.
Possible values: 34 ≤ length ≤ 43, Value must match regular expression
^[1-9]\d{0,9}-[\da-f]{32}$
ok
The cause of the error (if available).
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
The name of the error.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
The reason the error occurred (if available).
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
An internal error reference (if available).
Possible values: 0 ≤ value ≤ 9007199254740992
Schema for the result of a document modification.
Schema for a document ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
Schema for a document revision identifier.
Possible values: 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
ok.
The cause of the error (if available).
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
The name of the error.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
The reason the error occurred (if available).
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
An internal error reference (if available).
Possible values: 0 ≤ value ≤ 9007199254740992
Schema for the result of a document modification.
Schema for a document ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
Schema for a document revision identifier.
Possible values: 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
ok.
The cause of the error (if available).
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
The name of the error.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
The reason the error occurred (if available).
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
An internal error reference (if available).
Possible values: 0 ≤ value ≤ 9007199254740992
Schema for the result of a document modification.
Schema for a document ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
Schema for a document revision identifier.
Possible values: 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
ok.
The cause of the error (if available).
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
The name of the error.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
The reason the error occurred (if available).
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
An internal error reference (if available).
Possible values: 0 ≤ value ≤ 9007199254740992
Schema for the result of a document modification.
Schema for a document ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
Schema for a document revision identifier.
Possible values: 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
ok.
The cause of the error (if available).
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
The name of the error.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
The reason the error occurred (if available).
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
An internal error reference (if available).
Possible values: 0 ≤ value ≤ 9007199254740992
Status Code
HTTP response for Document modification operations.
HTTP response for Document modification operations.
HTTP error for bad request.
HTTP error for unauthorized.
HTTP error for exceeded data usage quota.
HTTP error for forbidden.
HTTP error for not found.
HTTP error for timeout reading client request.
HTTP error for conflict.
HTTP error for gone.
HTTP error for payload too large.
HTTP error for unsupported media type.
HTTP error for too many requests.
HTTP error for internal server error.
HTTP error for bad gateway.
HTTP error for service unavailable.
HTTP error for gateway timeout.
Example DocumentResult for a creation.
{ "id": "exampleid", "ok": true, "rev": "2-056f5f44046ecafc08a2bc2b9c229e20" }
Example DocumentResult for a creation.
{ "id": "exampleid", "ok": true, "rev": "2-056f5f44046ecafc08a2bc2b9c229e20" }
Example DocumentResult for a deletion.
{ "id": "exampleid", "ok": true, "rev": "3-056f5f44046ecafc08a2bc2b9c229e20" }
Example DocumentResult for a deletion.
{ "id": "exampleid", "ok": true, "rev": "3-056f5f44046ecafc08a2bc2b9c229e20" }
Example DocumentResult for an update.
{ "id": "exampleid", "ok": true, "rev": "2-9c65296036141e575d32ba9c034dd3ee" }
Example DocumentResult for an update.
{ "id": "exampleid", "ok": true, "rev": "2-9c65296036141e575d32ba9c034dd3ee" }
Example DocumentResult for a creation.
{ "id": "exampleid", "ok": true, "rev": "2-056f5f44046ecafc08a2bc2b9c229e20" }
Example DocumentResult for a creation.
{ "id": "exampleid", "ok": true, "rev": "2-056f5f44046ecafc08a2bc2b9c229e20" }
Example DocumentResult for a deletion.
{ "id": "exampleid", "ok": true, "rev": "3-056f5f44046ecafc08a2bc2b9c229e20" }
Example DocumentResult for a deletion.
{ "id": "exampleid", "ok": true, "rev": "3-056f5f44046ecafc08a2bc2b9c229e20" }
Example DocumentResult for an update.
{ "id": "exampleid", "ok": true, "rev": "2-9c65296036141e575d32ba9c034dd3ee" }
Example DocumentResult for an update.
{ "id": "exampleid", "ok": true, "rev": "2-9c65296036141e575d32ba9c034dd3ee" }
Example error response for a bad request.
{ "error": "bad_request", "reason": "Bad request." }
Example error response for a bad request.
{ "error": "bad_request", "reason": "Bad request." }
Example error response for writer or creator access is required.
{ "error": "unauthorized", "reason": "one of _writer, _creator is required for this request." }
Example error response for writer or creator access is required.
{ "error": "unauthorized", "reason": "one of _writer, _creator is required for this request." }
Example error response when the data quota of the plan is exceeded.
{ "error": "over_data_quota", "reason": "Account has exceeded its data usage quota. An upgrade to a paid plan is required." }
Example error response when the data quota of the plan is exceeded.
{ "error": "over_data_quota", "reason": "Account has exceeded its data usage quota. An upgrade to a paid plan is required." }
Example error response for a forbidden request.
{ "error": "forbidden", "reason": "server_admin access is required for this request" }
Example error response for a forbidden request.
{ "error": "forbidden", "reason": "server_admin access is required for this request" }
Example error response for an account temporarily locked out.
{ "error": "forbidden", "reason": "Account is temporarily locked due to multiple authentication failures" }
Example error response for an account temporarily locked out.
{ "error": "forbidden", "reason": "Account is temporarily locked due to multiple authentication failures" }
Example error response for a not found request.
{ "error": "not_found", "reason": "missing" }
Example error response for a not found request.
{ "error": "not_found", "reason": "missing" }
Example error response for timeout reading client request.
{ "error": "request_timeout", "reason": "Request timeout" }
Example error response for timeout reading client request.
{ "error": "request_timeout", "reason": "Request timeout" }
Example error response for a document update conflict.
{ "error": "conflict", "reason": "Document update conflict." }
Example error response for a document update conflict.
{ "error": "conflict", "reason": "Document update conflict." }
Example error response for gone.
{ "error": "gone", "reason": "The requested resource is no longer located here, verify your DNS settings." }
Example error response for gone.
{ "error": "gone", "reason": "The requested resource is no longer located here, verify your DNS settings." }
Example error response for a request with a document size that exceeds the allowable limit.
{ "error": "document_too_large", "reason": "doc_id" }
Example error response for a request with a document size that exceeds the allowable limit.
{ "error": "document_too_large", "reason": "doc_id" }
Example error response for unsupported media type.
{ "error": "bad_content_type", "reason": "Content-Type must be application/json" }
Example error response for unsupported media type.
{ "error": "bad_content_type", "reason": "Content-Type must be application/json" }
Example error response for too many requests.
{ "error": "too_many_requests", "reason": "You've exceeded your rate limit allowance. Please try again later." }
Example error response for too many requests.
{ "error": "too_many_requests", "reason": "You've exceeded your rate limit allowance. Please try again later." }
Example error response for an unknown server error.
{ "error": "unknown_error", "reason": "function_clause", "ref": 2632214382 }
Example error response for an unknown server error.
{ "error": "unknown_error", "reason": "function_clause", "ref": 2632214382 }
Example error response for bad gateway.
{ "error": "bad_gateway", "reason": "Bad gateway" }
Example error response for bad gateway.
{ "error": "bad_gateway", "reason": "Bad gateway" }
Example error response for service unavailable.
{ "error": "service_unavailable", "reason": "Service unavailable" }
Example error response for service unavailable.
{ "error": "service_unavailable", "reason": "Service unavailable" }
Example error response for gateway timeout.
{ "error": "gateway_timeout", "reason": "Gateway timeout" }
Example error response for gateway timeout.
{ "error": "gateway_timeout", "reason": "Gateway timeout" }
Query a list of all documents in a database (GET)
Queries the primary index (all document IDs). The results that match the query parameters are returned in a JSON object, including a list of matching documents with basic contents, such as the ID and revision. When no query parameters are specified, results for all documents in the database are returned. Optionally, document content or additional metadata can be included in the response.
GET /{db}/_all_docs
Request
Custom Headers
Set a unique identifier to trace a request.
Possible values: length = 36, Value must match regular expression
^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-4[0-9a-fA-F]{3}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$
Path Parameters
Path parameter to specify the database name.
Possible values: 1 ≤ length ≤ 238, Value must match regular expression
^_dbs$|^_global_changes$|^_metadata$|^_nodes$|^_replicator$|^_users$|^[a-z][a-z0-9_$()+/-]*$
Query Parameters
Query parameter to specify whether to include a list of conflicted revisions in each returned document. Active only when
include_docs
istrue
.Default:
false
Query parameter to specify whether to return the documents in descending by key order.
Default:
false
Query parameter to specify to stop returning records when the specified key is reached. String representation of any JSON type that matches the key type emitted by the view function.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Query parameter to specify to stop returning records when the specified document ID is reached.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^[^_].*$
Query parameter to specify whether to include the full content of the documents in the response.
Default:
false
Query parameter to specify whether the specified end key should be included in the result.
Default:
true
Query parameter to specify to return only documents that match the specified key. String representation of any JSON type that matches the key type emitted by the view function.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Query parameter to specify returning only documents that match any of the specified keys. String representation of a JSON array of keys that match the key type emitted by the view function. Must be URL encoded.
Possible values: 2 ≤ length ≤ 7168, Value must match regular expression
^\[(".*")*\]$
Query parameter to specify the number of returned documents to limit the result to.
Possible values: 0 ≤ value ≤ 4294967295
Query parameter to specify the number of records before starting to return the results.
Possible values: 0 ≤ value ≤ 9007199254740992
Default:
0
Query parameter to specify to start returning records from the specified key. String representation of any JSON type that matches the key type emitted by the view function.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Query parameter to specify to start returning records from the specified document ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^[^_].*$
Query parameter to specify whether to include in the response an update_seq value indicating the sequence id of the database the view reflects.
Default:
false
curl -H "Authorization: Bearer $API_BEARER_TOKEN" -X GET "$SERVICE_URL/orders/_all_docs"
Response
Schema for the result of an all documents operation.
Offset where the list started.
Possible values: 0 ≤ value ≤ 9007199254740992
Total number of document results.
Possible values: 0 ≤ value ≤ 4294967295
List of doc results.
Possible values: 0 ≤ number of items ≤ 4294967295
Current update sequence for the database
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^0|([1-9]\d*-[A-Za-z0-9-_]+)|now$
Status Code
HTTP response for getAllDocs and postAllDocs.
HTTP error for bad request.
HTTP error for unauthorized.
HTTP error for payment required.
HTTP error for forbidden.
HTTP error for not found.
HTTP error for timeout reading client request.
HTTP error for gone.
HTTP error for too many requests.
HTTP error for internal server error.
HTTP error for bad gateway.
HTTP error for service unavailable.
HTTP error for gateway timeout.
Example AllDocsResult response.
{ "offset": 0, "rows": [ { "doc": { "_id": "exampleid", "_rev": "1-967a00dff5e02add41819138abb3284d" }, "id": "exampleid", "key": "exampleid", "value": { "rev": "1-967a00dff5e02add41819138abb3284d" } } ], "total_rows": 1 }
Example error response for a bad request.
{ "error": "bad_request", "reason": "Bad request." }
Example error response for reader access is required for this request.
{ "error": "unauthorized", "reason": "_reader access is required for this request." }
Example error response for incorrect credentials.
{ "error": "unauthorized", "reason": "Name or password is incorrect." }
Example error response when payment is required. For example, if the data quota of the plan is exceeded.
{ "error": "payment_required", "reason": "Payment required" }
Example error response for a forbidden request.
{ "error": "forbidden", "reason": "server_admin access is required for this request" }
Example error response for an account temporarily locked out.
{ "error": "forbidden", "reason": "Account is temporarily locked due to multiple authentication failures" }
Example error response for a not found request.
{ "error": "not_found", "reason": "missing" }
Example error response for timeout reading client request.
{ "error": "request_timeout", "reason": "Request timeout" }
Example error response for gone.
{ "error": "gone", "reason": "The requested resource is no longer located here, verify your DNS settings." }
Example error response for too many requests.
{ "error": "too_many_requests", "reason": "You've exceeded your rate limit allowance. Please try again later." }
Example error response for an unknown server error.
{ "error": "unknown_error", "reason": "function_clause", "ref": 2632214382 }
Example error response for bad gateway.
{ "error": "bad_gateway", "reason": "Bad gateway" }
Example error response for service unavailable.
{ "error": "service_unavailable", "reason": "Service unavailable" }
Example error response for gateway timeout.
{ "error": "gateway_timeout", "reason": "Gateway timeout" }
Retrieve HTTP headers of all documents in a database (GET)
Retrieves the HTTP headers of all documents in a database (GET).
HEAD /{db}/_all_docs
Request
Custom Headers
Set a unique identifier to trace a request.
Possible values: length = 36, Value must match regular expression
^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-4[0-9a-fA-F]{3}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$
Path Parameters
Path parameter to specify the database name.
Possible values: 1 ≤ length ≤ 238, Value must match regular expression
^_dbs$|^_global_changes$|^_metadata$|^_nodes$|^_replicator$|^_users$|^[a-z][a-z0-9_$()+/-]*$
Response
Response Headers
Header for returning the compression codec used if an attachment's content_type is in list of compressible types.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Header returning the attachment size. If a compression codec is used, this value is the compressed size.
Possible values: 0 ≤ value ≤ 10485760
Header returning the server response date-time.
Possible values: 28 ≤ length ≤ 31, Value must match regular expression
^(Mon|Tue|Wed|Thu|Fri|Sat|Sun), [0-3]\d (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) \d{4} [0-2]\d:[0-5]\d:[0-6]\d ([+-]\d{4}|[A-Z]{2,3})$
Header returning the server information.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Header added by proxies through which the response was sent.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Header returning the Cloudant IAM action of the request.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^cloudantnosqldb\..+$
Header returning the Cloudant backend that handled the request.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Header returning the Cloudant class of the request.
Possible values: [
lookup
,query
,unlimited
,write
]Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^.+$
Status Code
HTTP response for
/_all_docs
style operations.HTTP error for bad request.
HTTP error for unauthorized.
HTTP error for payment required.
HTTP error for forbidden.
HTTP error for not found.
HTTP error for timeout reading client request.
HTTP error for gone.
HTTP error for too many requests.
HTTP error for internal server error.
HTTP error for bad gateway.
HTTP error for service unavailable.
HTTP error for gateway timeout.
Query a list of all documents in a database
Queries the primary index (all document IDs). The results that match the request body parameters are returned in a JSON object, including a list of matching documents with basic contents, such as the ID and revision. When no request body parameters are specified, results for all documents in the database are returned. Optionally, document content or additional metadata can be included in the response.
Queries the primary index (all document IDs). The results that match the request body parameters are returned in a JSON object, including a list of matching documents with basic contents, such as the ID and revision. When no request body parameters are specified, results for all documents in the database are returned. Optionally, document content or additional metadata can be included in the response.
Queries the primary index (all document IDs). The results that match the request body parameters are returned in a JSON object, including a list of matching documents with basic contents, such as the ID and revision. When no request body parameters are specified, results for all documents in the database are returned. Optionally, document content or additional metadata can be included in the response.
Queries the primary index (all document IDs). The results that match the request body parameters are returned in a JSON object, including a list of matching documents with basic contents, such as the ID and revision. When no request body parameters are specified, results for all documents in the database are returned. Optionally, document content or additional metadata can be included in the response.
Queries the primary index (all document IDs). The results that match the request body parameters are returned in a JSON object, including a list of matching documents with basic contents, such as the ID and revision. When no request body parameters are specified, results for all documents in the database are returned. Optionally, document content or additional metadata can be included in the response.
POST /{db}/_all_docs
(cloudant *CloudantV1) PostAllDocs(postAllDocsOptions *PostAllDocsOptions) (result *AllDocsResult, response *core.DetailedResponse, err error)
(cloudant *CloudantV1) PostAllDocsWithContext(ctx context.Context, postAllDocsOptions *PostAllDocsOptions) (result *AllDocsResult, response *core.DetailedResponse, err error)
(cloudant *CloudantV1) PostAllDocsAsStream(postAllDocsOptions *PostAllDocsOptions) (result io.ReadCloser, response *core.DetailedResponse, err error)
ServiceCall<AllDocsResult> postAllDocs(PostAllDocsOptions postAllDocsOptions)
ServiceCall<InputStream> postAllDocsAsStream(PostAllDocsOptions postAllDocsOptions)
postAllDocs(params)
postAllDocsAsStream(params)
post_all_docs(
self,
db: str,
*,
att_encoding_info: Optional[bool] = None,
attachments: Optional[bool] = None,
conflicts: Optional[bool] = None,
descending: Optional[bool] = None,
include_docs: Optional[bool] = None,
inclusive_end: Optional[bool] = None,
limit: Optional[int] = None,
skip: Optional[int] = None,
update_seq: Optional[bool] = None,
end_key: Optional[str] = None,
key: Optional[str] = None,
keys: Optional[List[str]] = None,
start_key: Optional[str] = None,
**kwargs,
) -> DetailedResponse
post_all_docs_as_stream(
self,
db: str,
*,
att_encoding_info: Optional[bool] = None,
attachments: Optional[bool] = None,
conflicts: Optional[bool] = None,
descending: Optional[bool] = None,
include_docs: Optional[bool] = None,
inclusive_end: Optional[bool] = None,
limit: Optional[int] = None,
skip: Optional[int] = None,
update_seq: Optional[bool] = None,
end_key: Optional[str] = None,
key: Optional[str] = None,
keys: Optional[List[str]] = None,
start_key: Optional[str] = None,
**kwargs,
) -> DetailedResponse
Request
Instantiate the PostAllDocsOptions
struct and set the fields to provide parameter values for the PostAllDocs
method.
Use the PostAllDocsOptions.Builder
to create a PostAllDocsOptions
object that contains the parameter values for the postAllDocs
method.
Custom Headers
Set a unique identifier to trace a request.
Possible values: length = 36, Value must match regular expression
^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-4[0-9a-fA-F]{3}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$
Path Parameters
Path parameter to specify the database name.
Possible values: 1 ≤ length ≤ 238, Value must match regular expression
^_dbs$|^_global_changes$|^_metadata$|^_nodes$|^_replicator$|^_users$|^[a-z][a-z0-9_$()+/-]*$
HTTP request body for postAllDocs and postPartitionAllDocs.
Example AllDocs request.
{
"limit": 10,
"start_key": "0007741142412418284"
}
Parameter to specify whether to include the encoding information in attachment stubs if the particular attachment is compressed.
Default:
false
Parameter to specify whether to include attachments bodies in a response.
Default:
false
Parameter to specify whether to include a list of conflicted revisions in each returned document. Active only when
include_docs
istrue
.Default:
false
Parameter to specify whether to return the documents in descending by key order.
Default:
false
Parameter to specify whether to include the full content of the documents in the response.
Default:
false
Parameter to specify whether the specified end key should be included in the result.
Default:
true
Parameter to specify the number of returned documents to limit the result to.
Possible values: 0 ≤ value ≤ 4294967295
Parameter to specify the number of records before starting to return the results.
Possible values: 0 ≤ value ≤ 9007199254740992
Default:
0
Query parameter to specify whether to sort the returned rows. Setting this to false offers a performance boost. The total_rows and offset fields are not available when this is set to false.
Default:
true
Parameter to specify whether to include in the response an update_seq value indicating the sequence id of the database the view reflects.
Default:
false
Schema for a document ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^([^_]|_(design|local)\/).+$
Schema for a document ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^([^_]|_(design|local)\/).+$
Schema for a list of document IDs.
Possible values: 0 ≤ number of items ≤ 65535, 1 ≤ length ≤ 7168, Value must match regular expression
^([^_]|_(design|local)\/).+$
Schema for a document ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^([^_]|_(design|local)\/).+$
WithContext method only
A context.Context instance that you can use to specify a timeout for the operation or to cancel an in-flight request.
The PostAllDocs options.
Path parameter to specify the database name.
Possible values: 1 ≤ length ≤ 238, Value must match regular expression
/^_dbs$|^_global_changes$|^_metadata$|^_nodes$|^_replicator$|^_users$|^[a-z][a-z0-9_$()+\/-]*$/
Parameter to specify whether to include the encoding information in attachment stubs if the particular attachment is compressed.
Default:
false
Parameter to specify whether to include attachments bodies in a response.
Default:
false
Parameter to specify whether to include a list of conflicted revisions in each returned document. Active only when
include_docs
istrue
.Default:
false
Parameter to specify whether to return the documents in descending by key order.
Default:
false
Parameter to specify whether to include the full content of the documents in the response.
Default:
false
Parameter to specify whether the specified end key should be included in the result.
Default:
true
Parameter to specify the number of returned documents to limit the result to.
Possible values: 0 ≤ value ≤ 4294967295
Examples:10
Parameter to specify the number of records before starting to return the results.
Possible values: 0 ≤ value ≤ 9007199254740992
Default:
0
Parameter to specify whether to include in the response an update_seq value indicating the sequence id of the database the view reflects.
Default:
false
Schema for a document ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
Schema for a document ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
Schema for a list of document IDs.
Possible values: 0 ≤ number of items ≤ 65535, 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
Schema for a document ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
Examples:0007741142412418284
The postAllDocs options.
Path parameter to specify the database name.
Possible values: 1 ≤ length ≤ 238, Value must match regular expression
/^_dbs$|^_global_changes$|^_metadata$|^_nodes$|^_replicator$|^_users$|^[a-z][a-z0-9_$()+\/-]*$/
Parameter to specify whether to include the encoding information in attachment stubs if the particular attachment is compressed.
Default:
false
Parameter to specify whether to include attachments bodies in a response.
Default:
false
Parameter to specify whether to include a list of conflicted revisions in each returned document. Active only when
include_docs
istrue
.Default:
false
Parameter to specify whether to return the documents in descending by key order.
Default:
false
Parameter to specify whether to include the full content of the documents in the response.
Default:
false
Parameter to specify whether the specified end key should be included in the result.
Default:
true
Parameter to specify the number of returned documents to limit the result to.
Possible values: 0 ≤ value ≤ 4294967295
Examples:10
Parameter to specify the number of records before starting to return the results.
Possible values: 0 ≤ value ≤ 9007199254740992
Default:
0
Parameter to specify whether to include in the response an update_seq value indicating the sequence id of the database the view reflects.
Default:
false
Schema for a document ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
Schema for a document ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
Schema for a list of document IDs.
Possible values: 0 ≤ number of items ≤ 65535, 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
Schema for a document ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
Examples:0007741142412418284
parameters
Path parameter to specify the database name.
Possible values: 1 ≤ length ≤ 238, Value must match regular expression
/^_dbs$|^_global_changes$|^_metadata$|^_nodes$|^_replicator$|^_users$|^[a-z][a-z0-9_$()+\/-]*$/
Parameter to specify whether to include the encoding information in attachment stubs if the particular attachment is compressed.
Default:
false
Parameter to specify whether to include attachments bodies in a response.
Default:
false
Parameter to specify whether to include a list of conflicted revisions in each returned document. Active only when
include_docs
istrue
.Default:
false
Parameter to specify whether to return the documents in descending by key order.
Default:
false
Parameter to specify whether to include the full content of the documents in the response.
Default:
false
Parameter to specify whether the specified end key should be included in the result.
Default:
true
Parameter to specify the number of returned documents to limit the result to.
Possible values: 0 ≤ value ≤ 4294967295
Examples:Parameter to specify the number of records before starting to return the results.
Possible values: 0 ≤ value ≤ 9007199254740992
Default:
0
Parameter to specify whether to include in the response an update_seq value indicating the sequence id of the database the view reflects.
Default:
false
Schema for a document ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
Schema for a document ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
Schema for a list of document IDs.
Possible values: 0 ≤ number of items ≤ 65535, 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
Schema for a document ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
Examples:
parameters
Path parameter to specify the database name.
Possible values: 1 ≤ length ≤ 238, Value must match regular expression
/^_dbs$|^_global_changes$|^_metadata$|^_nodes$|^_replicator$|^_users$|^[a-z][a-z0-9_$()+\/-]*$/
Parameter to specify whether to include the encoding information in attachment stubs if the particular attachment is compressed.
Default:
false
Parameter to specify whether to include attachments bodies in a response.
Default:
false
Parameter to specify whether to include a list of conflicted revisions in each returned document. Active only when
include_docs
istrue
.Default:
false
Parameter to specify whether to return the documents in descending by key order.
Default:
false
Parameter to specify whether to include the full content of the documents in the response.
Default:
false
Parameter to specify whether the specified end key should be included in the result.
Default:
true
Parameter to specify the number of returned documents to limit the result to.
Possible values: 0 ≤ value ≤ 4294967295
Examples:Parameter to specify the number of records before starting to return the results.
Possible values: 0 ≤ value ≤ 9007199254740992
Default:
0
Parameter to specify whether to include in the response an update_seq value indicating the sequence id of the database the view reflects.
Default:
false
Schema for a document ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
Schema for a document ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
Schema for a list of document IDs.
Possible values: 0 ≤ number of items ≤ 65535, 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
Schema for a document ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
Examples:
curl -H "Authorization: Bearer $API_BEARER_TOKEN" -X POST "$SERVICE_URL/orders/_all_docs" -H "Content-Type: application/json" --data '{ "include_docs": true, "startkey": "abc", "limit": 10 }'
import ( "encoding/json" "fmt" "github.com/IBM/cloudant-go-sdk/cloudantv1" )
service, err := cloudantv1.NewCloudantV1( &cloudantv1.CloudantV1Options{}, ) if err != nil { panic(err) } postAllDocsOptions := service.NewPostAllDocsOptions( "orders", ) postAllDocsOptions.SetIncludeDocs(true) postAllDocsOptions.SetStartKey("abc") postAllDocsOptions.SetLimit(10) allDocsResult, response, err := service.PostAllDocs(postAllDocsOptions) if err != nil { panic(err) } b, _ := json.MarshalIndent(allDocsResult, "", " ") fmt.Println(string(b))
import ( "encoding/json" "fmt" "io" "os" "github.com/IBM/cloudant-go-sdk/cloudantv1" )
service, err := cloudantv1.NewCloudantV1( &cloudantv1.CloudantV1Options{}, ) if err != nil { panic(err) } postAllDocsOptions := service.NewPostAllDocsOptions( "orders", ) postAllDocsOptions.SetIncludeDocs(true) postAllDocsOptions.SetStartKey("abc") postAllDocsOptions.SetLimit(10) allDocsResult, response, err := service.PostAllDocsAsStream(postAllDocsOptions) if err != nil { panic(err) } if allDocsResult != nil { defer allDocsResult.Close() outFile, err := os.Create("result.json") if err != nil { panic(err) } defer outFile.Close() if _, err = io.Copy(outFile, allDocsResult); err != nil { panic(err) } }
import com.ibm.cloud.cloudant.v1.Cloudant; import com.ibm.cloud.cloudant.v1.model.AllDocsResult; import com.ibm.cloud.cloudant.v1.model.PostAllDocsOptions;
Cloudant service = Cloudant.newInstance(); PostAllDocsOptions docsOptions = new PostAllDocsOptions.Builder() .db("orders") .includeDocs(true) .startKey("abc") .limit(10) .build(); AllDocsResult response = service.postAllDocs(docsOptions).execute().getResult(); System.out.println(response);
import com.ibm.cloud.cloudant.v1.Cloudant; import com.ibm.cloud.cloudant.v1.model.PostAllDocsOptions; import java.io.InputStream; import java.io.File; import java.nio.file.StandardCopyOption;
Cloudant service = Cloudant.newInstance(); PostAllDocsOptions docsOptions = new PostAllDocsOptions.Builder() .db("orders") .includeDocs(true) .startKey("abc") .limit(10) .build(); File file = new File("result.json"); try (InputStream response = service.postAllDocsAsStream(docsOptions).execute() .getResult()) { java.nio.file.Files.copy( response, file.toPath(), StandardCopyOption.REPLACE_EXISTING); }
import { CloudantV1 } from '@ibm-cloud/cloudant'; const service = CloudantV1.newInstance({}); service.postAllDocs({ db: 'orders', includeDocs: true, startKey: 'abc', limit: 10 }).then(response => { console.log(response.result); });
import { CloudantV1 } from '@ibm-cloud/cloudant'; const service = CloudantV1.newInstance({}); service.postAllDocsAsStream({ db: 'orders', includeDocs: true, startKey: 'abc', limit: 10 }).then(response => { let stream = fs.createWriteStream("result.json"); response.result.pipe(stream); response.result.on('end', () => stream.end()); });
from ibmcloudant.cloudant_v1 import CloudantV1 service = CloudantV1.new_instance() response = service.post_all_docs( db='orders', include_docs=True, start_key='abc', limit=10 ).get_result() print(response)
from ibmcloudant.cloudant_v1 import CloudantV1 service = CloudantV1.new_instance() result = service.post_all_docs_as_stream( db='orders', include_docs=True, start_key='abc', limit=10 ).get_result() with open('result.json', 'wb') as f: for chunk in result.iter_content(): f.write(chunk)
Response
Response type for PostAllDocs
: AllDocsResult
Response type for PostAllDocsAsStream
: io.ReadCloser
Response type for postAllDocs
: AllDocsResult
Response type for postAllDocsAsStream
: InputStream
Response type for postAllDocs
: AllDocsResult
Response type for postAllDocsAsStream
: NodeJS.ReadableStream
Response type for post_all_docs
: AllDocsResult
Response type for post_all_docs_as_stream
: BinaryIO
Schema for the result of an all documents operation.
Offset where the list started.
Possible values: 0 ≤ value ≤ 9007199254740992
Total number of document results.
Possible values: 0 ≤ value ≤ 4294967295
List of doc results.
Possible values: 0 ≤ number of items ≤ 4294967295
Current update sequence for the database
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
^0|([1-9]\d*-[A-Za-z0-9-_]+)|now$
Schema for the result of an all documents operation.
Total number of document results.
Possible values: 0 ≤ value ≤ 4294967295
List of doc results.
Possible values: number of items ≥ 0
- Rows
The cause of the error (if available).
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
The name of the error.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
The reason the error occurred (if available).
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
An internal error reference (if available).
Possible values: 0 ≤ value ≤ 9007199254740992
Schema for a document.
- Doc
Schema for a map of attachment name to attachment metadata.
- Attachments
Attachment MIME type.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+\/.+(?:;.+=.+)*$/
Base64-encoded content. Available if attachment content is requested by using the query parameters
attachments=true
oratts_since
. Note that when used with a view or changes feedinclude_docs
must also betrue
.Possible values: 1 ≤ length ≤ 13981014, Value must match regular expression
/^[A-Za-z0-9+\/]{2,}={0,3}$/
Content hash digest. It starts with prefix which announce hash type (e.g.
md5-
) and continues with Base64-encoded hash digest.Possible values: 28 ≤ length ≤ 7168, Value must match regular expression
/^[\\w\\d]+-[A-Za-z0-9+\/]{2,}={0,3}$/
Compressed attachment size in bytes. Available if content_type was in list of compressible types when the attachment was added and the query parameter
att_encoding_info
istrue
. Note that when used with a view or changes feedinclude_docs
must also betrue
.Possible values: 0 ≤ value ≤ 10485760
Compression codec. Available if content_type was in list of compressible types when the attachment was added and the and the query parameter
att_encoding_info
istrue
. Note that when used with a view or changes feedinclude_docs
must also betrue
.Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
True if the attachment follows in a multipart request or response.
Real attachment size in bytes. Not available if inline attachment content requested.
Possible values: 0 ≤ value ≤ 10485760
Revision number when attachment was added.
Possible values: 1 ≤ value ≤ 4294967295
Has
true
value if object contains stub info and no content. Otherwise omitted in response.
Schema for a list of document revision identifiers.
Possible values: number of items ≥ 0, 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
Deletion flag. Available if document was removed.
Schema for a list of document revision identifiers.
Possible values: number of items ≥ 0, 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
Schema for a document ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
Document's update sequence in current database. Available if requested with local_seq=true query parameter.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^0|([1-9]\\d*-[A-Za-z0-9-_]+)|now$/
Schema for a document revision identifier.
Possible values: 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
Schema for list of revision information.
- Revisions
Array of valid revision IDs, in reverse order (latest first).
Possible values: number of items ≥ 1, 1 ≤ length ≤ 7168, Value must match regular expression
/^[0-9a-fA-F]{32}$/
Prefix number for the latest revision.
Possible values: 1 ≤ value ≤ 4294967295
Schema for a list of objects with information about local revisions and their status.
Possible values: number of items ≥ 1
- RevsInfo
Schema for a document revision identifier.
Possible values: 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
Status of the revision. May be one of: -
available
: Revision is available for retrieving with rev query parameter -missing
: Revision is not available -deleted
: Revision belongs to deleted document.Possible values: [
available
,missing
,deleted
]
Schema for a document ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
Schema for a document ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
Value of built-in
/_all_docs
style view.- Value
If
true
then the document is deleted. Not present for undeleted documents.Schema for a document revision identifier.
Possible values: 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
Current update sequence for the database.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^0|([1-9]\\d*-[A-Za-z0-9-_]+)|now$/
Schema for the result of an all documents operation.
Total number of document results.
Possible values: 0 ≤ value ≤ 4294967295
List of doc results.
Possible values: number of items ≥ 0
- rows
The cause of the error (if available).
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
The name of the error.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
The reason the error occurred (if available).
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
An internal error reference (if available).
Possible values: 0 ≤ value ≤ 9007199254740992
Schema for a document.
- doc
Schema for a map of attachment name to attachment metadata.
- attachments
Attachment MIME type.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+\/.+(?:;.+=.+)*$/
Base64-encoded content. Available if attachment content is requested by using the query parameters
attachments=true
oratts_since
. Note that when used with a view or changes feedinclude_docs
must also betrue
.Possible values: 1 ≤ length ≤ 13981014, Value must match regular expression
/^[A-Za-z0-9+\/]{2,}={0,3}$/
Content hash digest. It starts with prefix which announce hash type (e.g.
md5-
) and continues with Base64-encoded hash digest.Possible values: 28 ≤ length ≤ 7168, Value must match regular expression
/^[\\w\\d]+-[A-Za-z0-9+\/]{2,}={0,3}$/
Compressed attachment size in bytes. Available if content_type was in list of compressible types when the attachment was added and the query parameter
att_encoding_info
istrue
. Note that when used with a view or changes feedinclude_docs
must also betrue
.Possible values: 0 ≤ value ≤ 10485760
Compression codec. Available if content_type was in list of compressible types when the attachment was added and the and the query parameter
att_encoding_info
istrue
. Note that when used with a view or changes feedinclude_docs
must also betrue
.Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
True if the attachment follows in a multipart request or response.
Real attachment size in bytes. Not available if inline attachment content requested.
Possible values: 0 ≤ value ≤ 10485760
Revision number when attachment was added.
Possible values: 1 ≤ value ≤ 4294967295
Has
true
value if object contains stub info and no content. Otherwise omitted in response.
Schema for a list of document revision identifiers.
Possible values: number of items ≥ 0, 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
Deletion flag. Available if document was removed.
Schema for a list of document revision identifiers.
Possible values: number of items ≥ 0, 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
Schema for a document ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
Document's update sequence in current database. Available if requested with local_seq=true query parameter.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^0|([1-9]\\d*-[A-Za-z0-9-_]+)|now$/
Schema for a document revision identifier.
Possible values: 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
Schema for list of revision information.
- revisions
Array of valid revision IDs, in reverse order (latest first).
Possible values: number of items ≥ 1, 1 ≤ length ≤ 7168, Value must match regular expression
/^[0-9a-fA-F]{32}$/
Prefix number for the latest revision.
Possible values: 1 ≤ value ≤ 4294967295
Schema for a list of objects with information about local revisions and their status.
Possible values: number of items ≥ 1
- revsInfo
Schema for a document revision identifier.
Possible values: 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
Status of the revision. May be one of: -
available
: Revision is available for retrieving with rev query parameter -missing
: Revision is not available -deleted
: Revision belongs to deleted document.Possible values: [
available
,missing
,deleted
]
Schema for a document ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
Schema for a document ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
Value of built-in
/_all_docs
style view.- value
If
true
then the document is deleted. Not present for undeleted documents.Schema for a document revision identifier.
Possible values: 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
Current update sequence for the database.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^0|([1-9]\\d*-[A-Za-z0-9-_]+)|now$/
Schema for the result of an all documents operation.
Total number of document results.
Possible values: 0 ≤ value ≤ 4294967295
List of doc results.
Possible values: number of items ≥ 0
- rows
The cause of the error (if available).
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
The name of the error.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
The reason the error occurred (if available).
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
An internal error reference (if available).
Possible values: 0 ≤ value ≤ 9007199254740992
Schema for a document.
- doc
Schema for a map of attachment name to attachment metadata.
- _attachments
Attachment MIME type.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+\/.+(?:;.+=.+)*$/
Base64-encoded content. Available if attachment content is requested by using the query parameters
attachments=true
oratts_since
. Note that when used with a view or changes feedinclude_docs
must also betrue
.Possible values: 1 ≤ length ≤ 13981014, Value must match regular expression
/^[A-Za-z0-9+\/]{2,}={0,3}$/
Content hash digest. It starts with prefix which announce hash type (e.g.
md5-
) and continues with Base64-encoded hash digest.Possible values: 28 ≤ length ≤ 7168, Value must match regular expression
/^[\\w\\d]+-[A-Za-z0-9+\/]{2,}={0,3}$/
Compressed attachment size in bytes. Available if content_type was in list of compressible types when the attachment was added and the query parameter
att_encoding_info
istrue
. Note that when used with a view or changes feedinclude_docs
must also betrue
.Possible values: 0 ≤ value ≤ 10485760
Compression codec. Available if content_type was in list of compressible types when the attachment was added and the and the query parameter
att_encoding_info
istrue
. Note that when used with a view or changes feedinclude_docs
must also betrue
.Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
True if the attachment follows in a multipart request or response.
Real attachment size in bytes. Not available if inline attachment content requested.
Possible values: 0 ≤ value ≤ 10485760
Revision number when attachment was added.
Possible values: 1 ≤ value ≤ 4294967295
Has
true
value if object contains stub info and no content. Otherwise omitted in response.
Schema for a list of document revision identifiers.
Possible values: number of items ≥ 0, 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
Deletion flag. Available if document was removed.
Schema for a list of document revision identifiers.
Possible values: number of items ≥ 0, 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
Schema for a document ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
Document's update sequence in current database. Available if requested with local_seq=true query parameter.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^0|([1-9]\\d*-[A-Za-z0-9-_]+)|now$/
Schema for a document revision identifier.
Possible values: 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
Schema for list of revision information.
- _revisions
Array of valid revision IDs, in reverse order (latest first).
Possible values: number of items ≥ 1, 1 ≤ length ≤ 7168, Value must match regular expression
/^[0-9a-fA-F]{32}$/
Prefix number for the latest revision.
Possible values: 1 ≤ value ≤ 4294967295
Schema for a list of objects with information about local revisions and their status.
Possible values: number of items ≥ 1
- _revs_info
Schema for a document revision identifier.
Possible values: 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
Status of the revision. May be one of: -
available
: Revision is available for retrieving with rev query parameter -missing
: Revision is not available -deleted
: Revision belongs to deleted document.Possible values: [
available
,missing
,deleted
]
Schema for a document ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
Schema for a document ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
Value of built-in
/_all_docs
style view.- value
If
true
then the document is deleted. Not present for undeleted documents.Schema for a document revision identifier.
Possible values: 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
Current update sequence for the database.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^0|([1-9]\\d*-[A-Za-z0-9-_]+)|now$/
Schema for the result of an all documents operation.
Total number of document results.
Possible values: 0 ≤ value ≤ 4294967295
List of doc results.
Possible values: number of items ≥ 0
- rows
The cause of the error (if available).
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
The name of the error.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
The reason the error occurred (if available).
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
An internal error reference (if available).
Possible values: 0 ≤ value ≤ 9007199254740992
Schema for a document.
- doc
Schema for a map of attachment name to attachment metadata.
- _attachments
Attachment MIME type.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+\/.+(?:;.+=.+)*$/
Base64-encoded content. Available if attachment content is requested by using the query parameters
attachments=true
oratts_since
. Note that when used with a view or changes feedinclude_docs
must also betrue
.Possible values: 1 ≤ length ≤ 13981014, Value must match regular expression
/^[A-Za-z0-9+\/]{2,}={0,3}$/
Content hash digest. It starts with prefix which announce hash type (e.g.
md5-
) and continues with Base64-encoded hash digest.Possible values: 28 ≤ length ≤ 7168, Value must match regular expression
/^[\\w\\d]+-[A-Za-z0-9+\/]{2,}={0,3}$/
Compressed attachment size in bytes. Available if content_type was in list of compressible types when the attachment was added and the query parameter
att_encoding_info
istrue
. Note that when used with a view or changes feedinclude_docs
must also betrue
.Possible values: 0 ≤ value ≤ 10485760
Compression codec. Available if content_type was in list of compressible types when the attachment was added and the and the query parameter
att_encoding_info
istrue
. Note that when used with a view or changes feedinclude_docs
must also betrue
.Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
True if the attachment follows in a multipart request or response.
Real attachment size in bytes. Not available if inline attachment content requested.
Possible values: 0 ≤ value ≤ 10485760
Revision number when attachment was added.
Possible values: 1 ≤ value ≤ 4294967295
Has
true
value if object contains stub info and no content. Otherwise omitted in response.
Schema for a list of document revision identifiers.
Possible values: number of items ≥ 0, 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
Deletion flag. Available if document was removed.
Schema for a list of document revision identifiers.
Possible values: number of items ≥ 0, 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
Schema for a document ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
Document's update sequence in current database. Available if requested with local_seq=true query parameter.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^0|([1-9]\\d*-[A-Za-z0-9-_]+)|now$/
Schema for a document revision identifier.
Possible values: 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
Schema for list of revision information.
- _revisions
Array of valid revision IDs, in reverse order (latest first).
Possible values: number of items ≥ 1, 1 ≤ length ≤ 7168, Value must match regular expression
/^[0-9a-fA-F]{32}$/
Prefix number for the latest revision.
Possible values: 1 ≤ value ≤ 4294967295
Schema for a list of objects with information about local revisions and their status.
Possible values: number of items ≥ 1
- _revs_info
Schema for a document revision identifier.
Possible values: 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
Status of the revision. May be one of: -
available
: Revision is available for retrieving with rev query parameter -missing
: Revision is not available -deleted
: Revision belongs to deleted document.Possible values: [
available
,missing
,deleted
]
Schema for a document ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
Schema for a document ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
Value of built-in
/_all_docs
style view.- value
If
true
then the document is deleted. Not present for undeleted documents.Schema for a document revision identifier.
Possible values: 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
Current update sequence for the database.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^0|([1-9]\\d*-[A-Za-z0-9-_]+)|now$/
Status Code
HTTP response for getAllDocs and postAllDocs.
HTTP error for bad request.
HTTP error for unauthorized.
HTTP error for payment required.
HTTP error for forbidden.
HTTP error for not found.
HTTP error for timeout reading client request.
HTTP error for gone.
HTTP error for payload too large.
HTTP error for unsupported media type.
HTTP error for too many requests.
HTTP error for internal server error.
HTTP error for bad gateway.
HTTP error for service unavailable.
HTTP error for gateway timeout.
Example AllDocsResult response.
{ "offset": 0, "rows": [ { "doc": { "_id": "exampleid", "_rev": "1-967a00dff5e02add41819138abb3284d" }, "id": "exampleid", "key": "exampleid", "value": { "rev": "1-967a00dff5e02add41819138abb3284d" } } ], "total_rows": 1 }
Example AllDocsResult response.
{ "offset": 0, "rows": [ { "doc": { "_id": "exampleid", "_rev": "1-967a00dff5e02add41819138abb3284d" }, "id": "exampleid", "key": "exampleid", "value": { "rev": "1-967a00dff5e02add41819138abb3284d" } } ], "total_rows": 1 }
Example error response for a bad request.
{ "error": "bad_request", "reason": "Bad request." }
Example error response for a bad request.
{ "error": "bad_request", "reason": "Bad request." }
Example error response for reader access is required for this request.
{ "error": "unauthorized", "reason": "_reader access is required for this request." }
Example error response for reader access is required for this request.
{ "error": "unauthorized", "reason": "_reader access is required for this request." }
Example error response for incorrect credentials.
{ "error": "unauthorized", "reason": "Name or password is incorrect." }
Example error response for incorrect credentials.
{ "error": "unauthorized", "reason": "Name or password is incorrect." }
Example error response when payment is required. For example, if the data quota of the plan is exceeded.
{ "error": "payment_required", "reason": "Payment required" }
Example error response when payment is required. For example, if the data quota of the plan is exceeded.
{ "error": "payment_required", "reason": "Payment required" }
Example error response for a forbidden request.
{ "error": "forbidden", "reason": "server_admin access is required for this request" }
Example error response for a forbidden request.
{ "error": "forbidden", "reason": "server_admin access is required for this request" }
Example error response for an account temporarily locked out.
{ "error": "forbidden", "reason": "Account is temporarily locked due to multiple authentication failures" }
Example error response for an account temporarily locked out.
{ "error": "forbidden", "reason": "Account is temporarily locked due to multiple authentication failures" }
Example error response for a not found request.
{ "error": "not_found", "reason": "missing" }
Example error response for a not found request.
{ "error": "not_found", "reason": "missing" }
Example error response for timeout reading client request.
{ "error": "request_timeout", "reason": "Request timeout" }
Example error response for timeout reading client request.
{ "error": "request_timeout", "reason": "Request timeout" }
Example error response for gone.
{ "error": "gone", "reason": "The requested resource is no longer located here, verify your DNS settings." }
Example error response for gone.
{ "error": "gone", "reason": "The requested resource is no longer located here, verify your DNS settings." }
Example error response for a request size that exceeds the limit.
{ "error": "too_large", "reason": "the request entity is too large" }
Example error response for a request size that exceeds the limit.
{ "error": "too_large", "reason": "the request entity is too large" }
Example error response for unsupported media type.
{ "error": "bad_content_type", "reason": "Content-Type must be application/json" }
Example error response for unsupported media type.
{ "error": "bad_content_type", "reason": "Content-Type must be application/json" }
Example error response for too many requests.
{ "error": "too_many_requests", "reason": "You've exceeded your rate limit allowance. Please try again later." }
Example error response for too many requests.
{ "error": "too_many_requests", "reason": "You've exceeded your rate limit allowance. Please try again later." }
Example error response for an unknown server error.
{ "error": "unknown_error", "reason": "function_clause", "ref": 2632214382 }
Example error response for an unknown server error.
{ "error": "unknown_error", "reason": "function_clause", "ref": 2632214382 }
Example error response for bad gateway.
{ "error": "bad_gateway", "reason": "Bad gateway" }
Example error response for bad gateway.
{ "error": "bad_gateway", "reason": "Bad gateway" }
Example error response for service unavailable.
{ "error": "service_unavailable", "reason": "Service unavailable" }
Example error response for service unavailable.
{ "error": "service_unavailable", "reason": "Service unavailable" }
Example error response for gateway timeout.
{ "error": "gateway_timeout", "reason": "Gateway timeout" }
Example error response for gateway timeout.
{ "error": "gateway_timeout", "reason": "Gateway timeout" }
Multi-query the list of all documents in a database
Runs multiple queries using the primary index (all document IDs). Returns a JSON object that contains a list of result objects, one for each query, with a structure equivalent to that of a single _all_docs
request. This enables you to request multiple queries in a single request, in place of multiple POST /{db}/_all_docs
requests.
Runs multiple queries using the primary index (all document IDs). Returns a JSON object that contains a list of result objects, one for each query, with a structure equivalent to that of a single _all_docs
request. This enables you to request multiple queries in a single request, in place of multiple POST /{db}/_all_docs
requests.
Runs multiple queries using the primary index (all document IDs). Returns a JSON object that contains a list of result objects, one for each query, with a structure equivalent to that of a single _all_docs
request. This enables you to request multiple queries in a single request, in place of multiple POST /{db}/_all_docs
requests.
Runs multiple queries using the primary index (all document IDs). Returns a JSON object that contains a list of result objects, one for each query, with a structure equivalent to that of a single _all_docs
request. This enables you to request multiple queries in a single request, in place of multiple POST /{db}/_all_docs
requests.
Runs multiple queries using the primary index (all document IDs). Returns a JSON object that contains a list of result objects, one for each query, with a structure equivalent to that of a single _all_docs
request. This enables you to request multiple queries in a single request, in place of multiple POST /{db}/_all_docs
requests.
POST /{db}/_all_docs/queries
(cloudant *CloudantV1) PostAllDocsQueries(postAllDocsQueriesOptions *PostAllDocsQueriesOptions) (result *AllDocsQueriesResult, response *core.DetailedResponse, err error)
(cloudant *CloudantV1) PostAllDocsQueriesWithContext(ctx context.Context, postAllDocsQueriesOptions *PostAllDocsQueriesOptions) (result *AllDocsQueriesResult, response *core.DetailedResponse, err error)
(cloudant *CloudantV1) PostAllDocsQueriesAsStream(postAllDocsQueriesOptions *PostAllDocsQueriesOptions) (result io.ReadCloser, response *core.DetailedResponse, err error)
ServiceCall<AllDocsQueriesResult> postAllDocsQueries(PostAllDocsQueriesOptions postAllDocsQueriesOptions)
ServiceCall<InputStream> postAllDocsQueriesAsStream(PostAllDocsQueriesOptions postAllDocsQueriesOptions)
postAllDocsQueries(params)
postAllDocsQueriesAsStream(params)
post_all_docs_queries(
self,
db: str,
queries: List['AllDocsQuery'],
**kwargs,
) -> DetailedResponse
post_all_docs_queries_as_stream(
self,
db: str,
queries: List['AllDocsQuery'],
**kwargs,
) -> DetailedResponse
Request
Instantiate the PostAllDocsQueriesOptions
struct and set the fields to provide parameter values for the PostAllDocsQueries
method.
Use the PostAllDocsQueriesOptions.Builder
to create a PostAllDocsQueriesOptions
object that contains the parameter values for the postAllDocsQueries
method.
Custom Headers
Set a unique identifier to trace a request.
Possible values: length = 36, Value must match regular expression
^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-4[0-9a-fA-F]{3}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$
Path Parameters
Path parameter to specify the database name.
Possible values: 1 ≤ length ≤ 238, Value must match regular expression
^_dbs$|^_global_changes$|^_metadata$|^_nodes$|^_replicator$|^_users$|^[a-z][a-z0-9_$()+/-]*$
HTTP request body for allDocsQueriesQuery, designDocsQueriesQuery and localDocsQueriesQuery.
Example AllDocsQueriesQuery request.
{
"queries": [
{
"keys": [
"small-appliances:1000042",
"small-appliances:1000043"
]
},
{
"limit": 3,
"skip": 2
}
]
}
An array of query objects with fields for the parameters of each individual view query to be executed. The field names and their meaning are the same as the query parameters of a regular
/_all_docs
request.Possible values: 1 ≤ number of items ≤ 65535
WithContext method only
A context.Context instance that you can use to specify a timeout for the operation or to cancel an in-flight request.
The PostAllDocsQueries options.
Path parameter to specify the database name.
Possible values: 1 ≤ length ≤ 238, Value must match regular expression
/^_dbs$|^_global_changes$|^_metadata$|^_nodes$|^_replicator$|^_users$|^[a-z][a-z0-9_$()+\/-]*$/
An array of query objects with fields for the parameters of each individual view query to be executed. The field names and their meaning are the same as the query parameters of a regular
/_all_docs
request.Possible values: 1 ≤ number of items ≤ 65535
Examples:[ { "keys": [ "small-appliances:1000042", "small-appliances:1000043" ] }, { "limit": 3, "skip": 2 } ]
- Queries
Parameter to specify whether to include the encoding information in attachment stubs if the particular attachment is compressed.
Default:
false
Parameter to specify whether to include attachments bodies in a response.
Default:
false
Parameter to specify whether to include a list of conflicted revisions in each returned document. Active only when
include_docs
istrue
.Default:
false
Parameter to specify whether to return the documents in descending by key order.
Default:
false
Parameter to specify whether to include the full content of the documents in the response.
Default:
false
Parameter to specify whether the specified end key should be included in the result.
Default:
true
Parameter to specify the number of returned documents to limit the result to.
Possible values: 0 ≤ value ≤ 4294967295
Parameter to specify the number of records before starting to return the results.
Possible values: 0 ≤ value ≤ 9007199254740992
Default:
0
Parameter to specify whether to include in the response an update_seq value indicating the sequence id of the database the view reflects.
Default:
false
Schema for a document ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
Schema for a document ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
Schema for a list of document IDs.
Possible values: 0 ≤ number of items ≤ 65535, 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
Schema for a document ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
The postAllDocsQueries options.
Path parameter to specify the database name.
Possible values: 1 ≤ length ≤ 238, Value must match regular expression
/^_dbs$|^_global_changes$|^_metadata$|^_nodes$|^_replicator$|^_users$|^[a-z][a-z0-9_$()+\/-]*$/
An array of query objects with fields for the parameters of each individual view query to be executed. The field names and their meaning are the same as the query parameters of a regular
/_all_docs
request.Possible values: 1 ≤ number of items ≤ 65535
Examples:[ { "keys": [ "small-appliances:1000042", "small-appliances:1000043" ] }, { "limit": 3, "skip": 2 } ]
- queries
Parameter to specify whether to include the encoding information in attachment stubs if the particular attachment is compressed.
Default:
false
Parameter to specify whether to include attachments bodies in a response.
Default:
false
Parameter to specify whether to include a list of conflicted revisions in each returned document. Active only when
include_docs
istrue
.Default:
false
Parameter to specify whether to return the documents in descending by key order.
Default:
false
Parameter to specify whether to include the full content of the documents in the response.
Default:
false
Parameter to specify whether the specified end key should be included in the result.
Default:
true
Parameter to specify the number of returned documents to limit the result to.
Possible values: 0 ≤ value ≤ 4294967295
Parameter to specify the number of records before starting to return the results.
Possible values: 0 ≤ value ≤ 9007199254740992
Default:
0
Parameter to specify whether to include in the response an update_seq value indicating the sequence id of the database the view reflects.
Default:
false
Schema for a document ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
Schema for a document ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
Schema for a list of document IDs.
Possible values: 0 ≤ number of items ≤ 65535, 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
Schema for a document ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
parameters
Path parameter to specify the database name.
Possible values: 1 ≤ length ≤ 238, Value must match regular expression
/^_dbs$|^_global_changes$|^_metadata$|^_nodes$|^_replicator$|^_users$|^[a-z][a-z0-9_$()+\/-]*$/
An array of query objects with fields for the parameters of each individual view query to be executed. The field names and their meaning are the same as the query parameters of a regular
/_all_docs
request.Possible values: 1 ≤ number of items ≤ 65535
Examples:- queries
Parameter to specify whether to include the encoding information in attachment stubs if the particular attachment is compressed.
Default:
false
Parameter to specify whether to include attachments bodies in a response.
Default:
false
Parameter to specify whether to include a list of conflicted revisions in each returned document. Active only when
include_docs
istrue
.Default:
false
Parameter to specify whether to return the documents in descending by key order.
Default:
false
Parameter to specify whether to include the full content of the documents in the response.
Default:
false
Parameter to specify whether the specified end key should be included in the result.
Default:
true
Parameter to specify the number of returned documents to limit the result to.
Possible values: 0 ≤ value ≤ 4294967295
Parameter to specify the number of records before starting to return the results.
Possible values: 0 ≤ value ≤ 9007199254740992
Default:
0
Parameter to specify whether to include in the response an update_seq value indicating the sequence id of the database the view reflects.
Default:
false
Schema for a document ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
Schema for a document ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
Schema for a list of document IDs.
Possible values: 0 ≤ number of items ≤ 65535, 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
Schema for a document ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
parameters
Path parameter to specify the database name.
Possible values: 1 ≤ length ≤ 238, Value must match regular expression
/^_dbs$|^_global_changes$|^_metadata$|^_nodes$|^_replicator$|^_users$|^[a-z][a-z0-9_$()+\/-]*$/
An array of query objects with fields for the parameters of each individual view query to be executed. The field names and their meaning are the same as the query parameters of a regular
/_all_docs
request.Possible values: 1 ≤ number of items ≤ 65535
Examples:- queries
Parameter to specify whether to include the encoding information in attachment stubs if the particular attachment is compressed.
Default:
false
Parameter to specify whether to include attachments bodies in a response.
Default:
false
Parameter to specify whether to include a list of conflicted revisions in each returned document. Active only when
include_docs
istrue
.Default:
false
Parameter to specify whether to return the documents in descending by key order.
Default:
false
Parameter to specify whether to include the full content of the documents in the response.
Default:
false
Parameter to specify whether the specified end key should be included in the result.
Default:
true
Parameter to specify the number of returned documents to limit the result to.
Possible values: 0 ≤ value ≤ 4294967295
Parameter to specify the number of records before starting to return the results.
Possible values: 0 ≤ value ≤ 9007199254740992
Default:
0
Parameter to specify whether to include in the response an update_seq value indicating the sequence id of the database the view reflects.
Default:
false
Schema for a document ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
Schema for a document ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
Schema for a list of document IDs.
Possible values: 0 ≤ number of items ≤ 65535, 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
Schema for a document ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
curl -H "Authorization: Bearer $API_BEARER_TOKEN" -X POST "$SERVICE_URL/products/_all_docs/queries" -H "Content-Type: application/json" --data '{ "queries": [ { "keys": [ "small-appliances:1000042", "small-appliances:1000043" ] }, { "limit": 3, "skip": 2 } ] }'
import ( "encoding/json" "fmt" "github.com/IBM/cloudant-go-sdk/cloudantv1" "github.com/IBM/go-sdk-core/v5/core" )
service, err := cloudantv1.NewCloudantV1( &cloudantv1.CloudantV1Options{}, ) if err != nil { panic(err) } allDocsQueries := []cloudantv1.AllDocsQuery{ { Keys: []string{ "1000042", "1000043", }, }, { Limit: core.Int64Ptr(3), Skip: core.Int64Ptr(2), }, } postAllDocsQueriesOptions := service.NewPostAllDocsQueriesOptions( "products", allDocsQueries, ) allDocsQueriesResult, response, err := service.PostAllDocsQueries(postAllDocsQueriesOptions) if err != nil { panic(err) } b, _ := json.MarshalIndent(allDocsQueriesResult, "", " ") fmt.Println(string(b))
import com.ibm.cloud.cloudant.v1.Cloudant; import com.ibm.cloud.cloudant.v1.model.AllDocsQuery; import com.ibm.cloud.cloudant.v1.model.AllDocsQueriesResult; import com.ibm.cloud.cloudant.v1.model.PostAllDocsQueriesOptions; import java.util.Arrays;
Cloudant service = Cloudant.newInstance(); AllDocsQuery query1 = new AllDocsQuery.Builder() .keys(Arrays.asList("1000042", "1000043")) .build(); AllDocsQuery query2 = new AllDocsQuery.Builder() .limit(3) .skip(2) .build(); PostAllDocsQueriesOptions queriesOptions = new PostAllDocsQueriesOptions.Builder() .queries(Arrays.asList(query1, query2)) .db("products") .build(); AllDocsQueriesResult response = service.postAllDocsQueries(queriesOptions).execute() .getResult(); System.out.println(response);
import { CloudantV1 } from '@ibm-cloud/cloudant'; const service = CloudantV1.newInstance({}); const allDocsQueries: CloudantV1.AllDocsQuery[] = [{ keys: ['1000042', '1000043'], }, { limit: 3, skip: 2 }]; service.postAllDocsQueries({ db: 'products', queries: allDocsQueries }).then(response => { console.log(response.result); });
from ibmcloudant.cloudant_v1 import AllDocsQuery, CloudantV1 service = CloudantV1.new_instance() all_docs_query1 = AllDocsQuery( keys=['1000042', '1000043'] ) all_docs_query2 = AllDocsQuery( limit=3, skip=2 ) response = service.post_all_docs_queries( db='products', queries=[all_docs_query1, all_docs_query2] ).get_result() print(response)
Response
Response type for PostAllDocsQueries
: AllDocsQueriesResult
Response type for PostAllDocsQueriesAsStream
: io.ReadCloser
Response type for postAllDocsQueries
: AllDocsQueriesResult
Response type for postAllDocsQueriesAsStream
: InputStream
Response type for postAllDocsQueries
: AllDocsQueriesResult
Response type for postAllDocsQueriesAsStream
: NodeJS.ReadableStream
Response type for post_all_docs_queries
: AllDocsQueriesResult
Response type for post_all_docs_queries_as_stream
: BinaryIO
Schema for the result of an all documents queries operation.
An array of result objects - one for each query. Each result object contains the same fields as the response to a regular
/_all_docs
request.Possible values: 1 ≤ number of items ≤ 65535
Schema for the result of an all documents queries operation.
An array of result objects - one for each query. Each result object contains the same fields as the response to a regular
/_all_docs
request.Possible values: 1 ≤ number of items ≤ 65535
- Results
Total number of document results.
Possible values: 0 ≤ value ≤ 4294967295
List of doc results.
Possible values: number of items ≥ 0
- Rows
The cause of the error (if available).
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
The name of the error.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
The reason the error occurred (if available).
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
An internal error reference (if available).
Possible values: 0 ≤ value ≤ 9007199254740992
Schema for a document.
- Doc
Schema for a map of attachment name to attachment metadata.
- Attachments
Attachment MIME type.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+\/.+(?:;.+=.+)*$/
Base64-encoded content. Available if attachment content is requested by using the query parameters
attachments=true
oratts_since
. Note that when used with a view or changes feedinclude_docs
must also betrue
.Possible values: 1 ≤ length ≤ 13981014, Value must match regular expression
/^[A-Za-z0-9+\/]{2,}={0,3}$/
Content hash digest. It starts with prefix which announce hash type (e.g.
md5-
) and continues with Base64-encoded hash digest.Possible values: 28 ≤ length ≤ 7168, Value must match regular expression
/^[\\w\\d]+-[A-Za-z0-9+\/]{2,}={0,3}$/
Compressed attachment size in bytes. Available if content_type was in list of compressible types when the attachment was added and the query parameter
att_encoding_info
istrue
. Note that when used with a view or changes feedinclude_docs
must also betrue
.Possible values: 0 ≤ value ≤ 10485760
Compression codec. Available if content_type was in list of compressible types when the attachment was added and the and the query parameter
att_encoding_info
istrue
. Note that when used with a view or changes feedinclude_docs
must also betrue
.Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
True if the attachment follows in a multipart request or response.
Real attachment size in bytes. Not available if inline attachment content requested.
Possible values: 0 ≤ value ≤ 10485760
Revision number when attachment was added.
Possible values: 1 ≤ value ≤ 4294967295
Has
true
value if object contains stub info and no content. Otherwise omitted in response.
Schema for a list of document revision identifiers.
Possible values: number of items ≥ 0, 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
Deletion flag. Available if document was removed.
Schema for a list of document revision identifiers.
Possible values: number of items ≥ 0, 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
Schema for a document ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
Document's update sequence in current database. Available if requested with local_seq=true query parameter.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^0|([1-9]\\d*-[A-Za-z0-9-_]+)|now$/
Schema for a document revision identifier.
Possible values: 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
Schema for list of revision information.
- Revisions
Array of valid revision IDs, in reverse order (latest first).
Possible values: number of items ≥ 1, 1 ≤ length ≤ 7168, Value must match regular expression
/^[0-9a-fA-F]{32}$/
Prefix number for the latest revision.
Possible values: 1 ≤ value ≤ 4294967295
Schema for a list of objects with information about local revisions and their status.
Possible values: number of items ≥ 1
- RevsInfo
Schema for a document revision identifier.
Possible values: 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
Status of the revision. May be one of: -
available
: Revision is available for retrieving with rev query parameter -missing
: Revision is not available -deleted
: Revision belongs to deleted document.Possible values: [
available
,missing
,deleted
]
Schema for a document ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
Schema for a document ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
Value of built-in
/_all_docs
style view.- Value
If
true
then the document is deleted. Not present for undeleted documents.Schema for a document revision identifier.
Possible values: 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
Current update sequence for the database.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^0|([1-9]\\d*-[A-Za-z0-9-_]+)|now$/
Schema for the result of an all documents queries operation.
An array of result objects - one for each query. Each result object contains the same fields as the response to a regular
/_all_docs
request.Possible values: 1 ≤ number of items ≤ 65535
- results
Total number of document results.
Possible values: 0 ≤ value ≤ 4294967295
List of doc results.
Possible values: number of items ≥ 0
- rows
The cause of the error (if available).
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
The name of the error.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
The reason the error occurred (if available).
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
An internal error reference (if available).
Possible values: 0 ≤ value ≤ 9007199254740992
Schema for a document.
- doc
Schema for a map of attachment name to attachment metadata.
- attachments
Attachment MIME type.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+\/.+(?:;.+=.+)*$/
Base64-encoded content. Available if attachment content is requested by using the query parameters
attachments=true
oratts_since
. Note that when used with a view or changes feedinclude_docs
must also betrue
.Possible values: 1 ≤ length ≤ 13981014, Value must match regular expression
/^[A-Za-z0-9+\/]{2,}={0,3}$/
Content hash digest. It starts with prefix which announce hash type (e.g.
md5-
) and continues with Base64-encoded hash digest.Possible values: 28 ≤ length ≤ 7168, Value must match regular expression
/^[\\w\\d]+-[A-Za-z0-9+\/]{2,}={0,3}$/
Compressed attachment size in bytes. Available if content_type was in list of compressible types when the attachment was added and the query parameter
att_encoding_info
istrue
. Note that when used with a view or changes feedinclude_docs
must also betrue
.Possible values: 0 ≤ value ≤ 10485760
Compression codec. Available if content_type was in list of compressible types when the attachment was added and the and the query parameter
att_encoding_info
istrue
. Note that when used with a view or changes feedinclude_docs
must also betrue
.Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
True if the attachment follows in a multipart request or response.
Real attachment size in bytes. Not available if inline attachment content requested.
Possible values: 0 ≤ value ≤ 10485760
Revision number when attachment was added.
Possible values: 1 ≤ value ≤ 4294967295
Has
true
value if object contains stub info and no content. Otherwise omitted in response.
Schema for a list of document revision identifiers.
Possible values: number of items ≥ 0, 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
Deletion flag. Available if document was removed.
Schema for a list of document revision identifiers.
Possible values: number of items ≥ 0, 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
Schema for a document ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
Document's update sequence in current database. Available if requested with local_seq=true query parameter.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^0|([1-9]\\d*-[A-Za-z0-9-_]+)|now$/
Schema for a document revision identifier.
Possible values: 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
Schema for list of revision information.
- revisions
Array of valid revision IDs, in reverse order (latest first).
Possible values: number of items ≥ 1, 1 ≤ length ≤ 7168, Value must match regular expression
/^[0-9a-fA-F]{32}$/
Prefix number for the latest revision.
Possible values: 1 ≤ value ≤ 4294967295
Schema for a list of objects with information about local revisions and their status.
Possible values: number of items ≥ 1
- revsInfo
Schema for a document revision identifier.
Possible values: 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
Status of the revision. May be one of: -
available
: Revision is available for retrieving with rev query parameter -missing
: Revision is not available -deleted
: Revision belongs to deleted document.Possible values: [
available
,missing
,deleted
]
Schema for a document ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
Schema for a document ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
Value of built-in
/_all_docs
style view.- value
If
true
then the document is deleted. Not present for undeleted documents.Schema for a document revision identifier.
Possible values: 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
Current update sequence for the database.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^0|([1-9]\\d*-[A-Za-z0-9-_]+)|now$/
Schema for the result of an all documents queries operation.
An array of result objects - one for each query. Each result object contains the same fields as the response to a regular
/_all_docs
request.Possible values: 1 ≤ number of items ≤ 65535
- results
Total number of document results.
Possible values: 0 ≤ value ≤ 4294967295
List of doc results.
Possible values: number of items ≥ 0
- rows
The cause of the error (if available).
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
The name of the error.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
The reason the error occurred (if available).
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
An internal error reference (if available).
Possible values: 0 ≤ value ≤ 9007199254740992
Schema for a document.
- doc
Schema for a map of attachment name to attachment metadata.
- _attachments
Attachment MIME type.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+\/.+(?:;.+=.+)*$/
Base64-encoded content. Available if attachment content is requested by using the query parameters
attachments=true
oratts_since
. Note that when used with a view or changes feedinclude_docs
must also betrue
.Possible values: 1 ≤ length ≤ 13981014, Value must match regular expression
/^[A-Za-z0-9+\/]{2,}={0,3}$/
Content hash digest. It starts with prefix which announce hash type (e.g.
md5-
) and continues with Base64-encoded hash digest.Possible values: 28 ≤ length ≤ 7168, Value must match regular expression
/^[\\w\\d]+-[A-Za-z0-9+\/]{2,}={0,3}$/
Compressed attachment size in bytes. Available if content_type was in list of compressible types when the attachment was added and the query parameter
att_encoding_info
istrue
. Note that when used with a view or changes feedinclude_docs
must also betrue
.Possible values: 0 ≤ value ≤ 10485760
Compression codec. Available if content_type was in list of compressible types when the attachment was added and the and the query parameter
att_encoding_info
istrue
. Note that when used with a view or changes feedinclude_docs
must also betrue
.Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
True if the attachment follows in a multipart request or response.
Real attachment size in bytes. Not available if inline attachment content requested.
Possible values: 0 ≤ value ≤ 10485760
Revision number when attachment was added.
Possible values: 1 ≤ value ≤ 4294967295
Has
true
value if object contains stub info and no content. Otherwise omitted in response.
Schema for a list of document revision identifiers.
Possible values: number of items ≥ 0, 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
Deletion flag. Available if document was removed.
Schema for a list of document revision identifiers.
Possible values: number of items ≥ 0, 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
Schema for a document ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
Document's update sequence in current database. Available if requested with local_seq=true query parameter.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^0|([1-9]\\d*-[A-Za-z0-9-_]+)|now$/
Schema for a document revision identifier.
Possible values: 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
Schema for list of revision information.
- _revisions
Array of valid revision IDs, in reverse order (latest first).
Possible values: number of items ≥ 1, 1 ≤ length ≤ 7168, Value must match regular expression
/^[0-9a-fA-F]{32}$/
Prefix number for the latest revision.
Possible values: 1 ≤ value ≤ 4294967295
Schema for a list of objects with information about local revisions and their status.
Possible values: number of items ≥ 1
- _revs_info
Schema for a document revision identifier.
Possible values: 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
Status of the revision. May be one of: -
available
: Revision is available for retrieving with rev query parameter -missing
: Revision is not available -deleted
: Revision belongs to deleted document.Possible values: [
available
,missing
,deleted
]
Schema for a document ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
Schema for a document ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
Value of built-in
/_all_docs
style view.- value
If
true
then the document is deleted. Not present for undeleted documents.Schema for a document revision identifier.
Possible values: 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
Current update sequence for the database.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^0|([1-9]\\d*-[A-Za-z0-9-_]+)|now$/
Schema for the result of an all documents queries operation.
An array of result objects - one for each query. Each result object contains the same fields as the response to a regular
/_all_docs
request.Possible values: 1 ≤ number of items ≤ 65535
- results
Total number of document results.
Possible values: 0 ≤ value ≤ 4294967295
List of doc results.
Possible values: number of items ≥ 0
- rows
The cause of the error (if available).
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
The name of the error.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
The reason the error occurred (if available).
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
An internal error reference (if available).
Possible values: 0 ≤ value ≤ 9007199254740992
Schema for a document.
- doc
Schema for a map of attachment name to attachment metadata.
- _attachments
Attachment MIME type.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+\/.+(?:;.+=.+)*$/
Base64-encoded content. Available if attachment content is requested by using the query parameters
attachments=true
oratts_since
. Note that when used with a view or changes feedinclude_docs
must also betrue
.Possible values: 1 ≤ length ≤ 13981014, Value must match regular expression
/^[A-Za-z0-9+\/]{2,}={0,3}$/
Content hash digest. It starts with prefix which announce hash type (e.g.
md5-
) and continues with Base64-encoded hash digest.Possible values: 28 ≤ length ≤ 7168, Value must match regular expression
/^[\\w\\d]+-[A-Za-z0-9+\/]{2,}={0,3}$/
Compressed attachment size in bytes. Available if content_type was in list of compressible types when the attachment was added and the query parameter
att_encoding_info
istrue
. Note that when used with a view or changes feedinclude_docs
must also betrue
.Possible values: 0 ≤ value ≤ 10485760
Compression codec. Available if content_type was in list of compressible types when the attachment was added and the and the query parameter
att_encoding_info
istrue
. Note that when used with a view or changes feedinclude_docs
must also betrue
.Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^.+$/
True if the attachment follows in a multipart request or response.
Real attachment size in bytes. Not available if inline attachment content requested.
Possible values: 0 ≤ value ≤ 10485760
Revision number when attachment was added.
Possible values: 1 ≤ value ≤ 4294967295
Has
true
value if object contains stub info and no content. Otherwise omitted in response.
Schema for a list of document revision identifiers.
Possible values: number of items ≥ 0, 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
Deletion flag. Available if document was removed.
Schema for a list of document revision identifiers.
Possible values: number of items ≥ 0, 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
Schema for a document ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
Document's update sequence in current database. Available if requested with local_seq=true query parameter.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^0|([1-9]\\d*-[A-Za-z0-9-_]+)|now$/
Schema for a document revision identifier.
Possible values: 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
Schema for list of revision information.
- _revisions
Array of valid revision IDs, in reverse order (latest first).
Possible values: number of items ≥ 1, 1 ≤ length ≤ 7168, Value must match regular expression
/^[0-9a-fA-F]{32}$/
Prefix number for the latest revision.
Possible values: 1 ≤ value ≤ 4294967295
Schema for a list of objects with information about local revisions and their status.
Possible values: number of items ≥ 1
- _revs_info
Schema for a document revision identifier.
Possible values: 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
Status of the revision. May be one of: -
available
: Revision is available for retrieving with rev query parameter -missing
: Revision is not available -deleted
: Revision belongs to deleted document.Possible values: [
available
,missing
,deleted
]
Schema for a document ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
Schema for a document ID.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^([^_]|_(design|local)\/).+$/
Value of built-in
/_all_docs
style view.- value
If
true
then the document is deleted. Not present for undeleted documents.Schema for a document revision identifier.
Possible values: 34 ≤ length ≤ 43, Value must match regular expression
/^[1-9]\\d{0,9}-[\\da-f]{32}$/
Current update sequence for the database.
Possible values: 1 ≤ length ≤ 7168, Value must match regular expression
/^0|([1-9]\\d*-[A-Za-z0-9-_]+)|now$/
Status Code
HTTP response for
/_all_docs/queries
style operations.HTTP error for bad request.
HTTP error for unauthorized.
HTTP error for payment required.
HTTP error for forbidden.
HTTP error for not found.
HTTP error for timeout reading client request.
HTTP error for gone.
HTTP error for payload too large.
HTTP error for unsupported media type.
HTTP error for too many requests.
HTTP error for internal server error.
HTTP error for bad gateway.
HTTP error for service unavailable.
HTTP error for gateway timeout.
Example AllDocsQueriesResult response.
{ "results": [ { "offset": 0, "rows": [ { "id": "exampleid", "key": "exampleid", "value": { "rev": "1-5005d65514fe9e90f8eccf174af5dd64" } }, { "id": "exampleid2", "key": "exampleid2", "value": { "rev": "1-2d7810b054babeda4812b3924428d6d6" } } ], "total_rows": 5 }, { "offset": 2, "rows": [ { "id": "exampleid3", "key": "exampleid3", "value": { "rev": "1-5005d65514fe9e90f8eccf174af5dd64" } }, { "id": "exampleid4", "key": "exampleid4", "value": { "rev": "1-2d7810b054babeda4812b3924428d6d6" } } ], "total_rows": 5 } ] }
Example AllDocsQueriesResult response.
{ "results": [ { "offset": 0, "rows": [ { "id": "exampleid", "key": "exampleid", "value": { "rev": "1-5005d65514fe9e90f8eccf174af5dd64" } }, { "id": "exampleid2", "key": "exampleid2", "value": { "rev": "1-2d7810b054babeda4812b3924428d6d6" } } ], "total_rows": 5 }, { "offset": 2, "rows": [ { "id": "exampleid3", "key": "exampleid3", "value": { "rev": "1-5005d65514fe9e90f8eccf174af5dd64" } }, { "id": "exampleid4", "key": "exampleid4", "value": { "rev": "1-2d7810b054babeda4812b3924428d6d6" } } ], "total_rows": 5 } ] }
Example error response for a bad request.
{ "error": "bad_request", "reason": "Bad request." }
Example error response for a bad request.
{ "error": "bad_request", "reason": "Bad request." }
Example error response for reader access is required for this request.
{ "error": "unauthorized", "reason": "_reader access is required for this request." }
Example error response for reader access is required for this request.
{ "error": "unauthorized", "reason": "_reader access is required for this request." }
Example error response for incorrect credentials.
{ "error": "unauthorized", "reason": "Name or password is incorrect." }
Example error response for incorrect credentials.
{ "error": "unauthorized", "reason": "Name or password is incorrect." }
Example error response when payment is required. For example, if the data quota of the plan is exceeded.
{ "error": "payment_required", "reason": "Payment required" }
Example error response when payment is required. For example, if the data quota of the plan is exceeded.
{ "error": "payment_required", "reason": "Payment required" }
Example error response for a forbidden request.
{ "error": "forbidden", "reason": "server_admin access is required for this request" }
Example error response for a forbidden request.
{ "error": "forbidden", "reason": "server_admin access is required for this request" }
Example error response for an account temporarily locked out.
{ "error": "forbidden", "reason": "Account is temporarily locked due to multiple authentication failures"