All URIs are relative to http://127.0.0.1:9308
Method | HTTP request | Description |
---|---|---|
Bulk | Post /json/bulk | Bulk index operations |
Delete | Post /json/delete | Delete a document in an index |
Insert | Post /json/insert | Create a new document in an index |
Replace | Post /json/replace | Replace new document in an index |
Update | Post /json/update | Update a document in an index |
BulkResponse Bulk(ctx).Body(body).Execute()
Bulk index operations
package main
import (
"context"
"fmt"
"os"
openapiclient "./manticoresearch"
)
func main() {
body := "body_example" // string |
configuration := openapiclient.NewConfiguration()
api_client := openapiclient.NewAPIClient(configuration)
resp, r, err := api_client.IndexApi.Bulk(context.Background()).Body(body).Execute()
if err.Error() != "" {
fmt.Fprintf(os.Stderr, "Error when calling `IndexApi.Bulk``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `Bulk`: BulkResponse
fmt.Fprintf(os.Stdout, "Response from `IndexApi.Bulk`: %v\n", resp)
}
Other parameters are passed through a pointer to a apiBulkRequest struct via the builder pattern
Name | Type | Description | Notes |
---|---|---|---|
body | string |
No authorization required
- Content-Type: application/x-ndjson
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
DeleteResponse Delete(ctx).DeleteDocumentRequest(deleteDocumentRequest).Execute()
Delete a document in an index
package main
import (
"context"
"fmt"
"os"
openapiclient "./manticoresearch"
)
func main() {
deleteDocumentRequest := *openapiclient.NewDeleteDocumentRequest("Index_example") // DeleteDocumentRequest |
configuration := openapiclient.NewConfiguration()
api_client := openapiclient.NewAPIClient(configuration)
resp, r, err := api_client.IndexApi.Delete(context.Background()).DeleteDocumentRequest(deleteDocumentRequest).Execute()
if err.Error() != "" {
fmt.Fprintf(os.Stderr, "Error when calling `IndexApi.Delete``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `Delete`: DeleteResponse
fmt.Fprintf(os.Stdout, "Response from `IndexApi.Delete`: %v\n", resp)
}
Other parameters are passed through a pointer to a apiDeleteRequest struct via the builder pattern
Name | Type | Description | Notes |
---|---|---|---|
deleteDocumentRequest | DeleteDocumentRequest |
No authorization required
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
SuccessResponse Insert(ctx).InsertDocumentRequest(insertDocumentRequest).Execute()
Create a new document in an index
package main
import (
"context"
"fmt"
"os"
openapiclient "./manticoresearch"
)
func main() {
insertDocumentRequest := *openapiclient.NewInsertDocumentRequest("Index_example", map[string]map[string]interface{}{"key": map[string]interface{}(123)}) // InsertDocumentRequest |
configuration := openapiclient.NewConfiguration()
api_client := openapiclient.NewAPIClient(configuration)
resp, r, err := api_client.IndexApi.Insert(context.Background()).InsertDocumentRequest(insertDocumentRequest).Execute()
if err.Error() != "" {
fmt.Fprintf(os.Stderr, "Error when calling `IndexApi.Insert``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `Insert`: SuccessResponse
fmt.Fprintf(os.Stdout, "Response from `IndexApi.Insert`: %v\n", resp)
}
Other parameters are passed through a pointer to a apiInsertRequest struct via the builder pattern
Name | Type | Description | Notes |
---|---|---|---|
insertDocumentRequest | InsertDocumentRequest |
No authorization required
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
SuccessResponse Replace(ctx).InsertDocumentRequest(insertDocumentRequest).Execute()
Replace new document in an index
package main
import (
"context"
"fmt"
"os"
openapiclient "./manticoresearch"
)
func main() {
insertDocumentRequest := *openapiclient.NewInsertDocumentRequest("Index_example", map[string]map[string]interface{}{"key": map[string]interface{}(123)}) // InsertDocumentRequest |
configuration := openapiclient.NewConfiguration()
api_client := openapiclient.NewAPIClient(configuration)
resp, r, err := api_client.IndexApi.Replace(context.Background()).InsertDocumentRequest(insertDocumentRequest).Execute()
if err.Error() != "" {
fmt.Fprintf(os.Stderr, "Error when calling `IndexApi.Replace``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `Replace`: SuccessResponse
fmt.Fprintf(os.Stdout, "Response from `IndexApi.Replace`: %v\n", resp)
}
Other parameters are passed through a pointer to a apiReplaceRequest struct via the builder pattern
Name | Type | Description | Notes |
---|---|---|---|
insertDocumentRequest | InsertDocumentRequest |
No authorization required
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
UpdateResponse Update(ctx).UpdateDocumentRequest(updateDocumentRequest).Execute()
Update a document in an index
package main
import (
"context"
"fmt"
"os"
openapiclient "./manticoresearch"
)
func main() {
updateDocumentRequest := *openapiclient.NewUpdateDocumentRequest("Index_example", map[string]map[string]interface{}{"key": map[string]interface{}(123)}) // UpdateDocumentRequest |
configuration := openapiclient.NewConfiguration()
api_client := openapiclient.NewAPIClient(configuration)
resp, r, err := api_client.IndexApi.Update(context.Background()).UpdateDocumentRequest(updateDocumentRequest).Execute()
if err.Error() != "" {
fmt.Fprintf(os.Stderr, "Error when calling `IndexApi.Update``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `Update`: UpdateResponse
fmt.Fprintf(os.Stdout, "Response from `IndexApi.Update`: %v\n", resp)
}
Other parameters are passed through a pointer to a apiUpdateRequest struct via the builder pattern
Name | Type | Description | Notes |
---|---|---|---|
updateDocumentRequest | UpdateDocumentRequest |
No authorization required
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]