All URIs are relative to https://api.basistheory.com
Method | HTTP request | Description |
---|---|---|
Detokenize | Post /detokenize |
Detokenize(ctx).Body(body).Execute()
package main
import (
"context"
"fmt"
"os"
openapiclient "./openapi"
)
func main() {
body := interface{}(987) // interface{} | (optional)
configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
r, err := apiClient.DetokenizeApi.Detokenize(context.Background()).Body(body).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `DetokenizeApi.Detokenize``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
}
Other parameters are passed through a pointer to a apiDetokenizeRequest struct via the builder pattern
Name | Type | Description | Notes |
---|---|---|---|
body | interface{} |
(empty response body)
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]