Skip to content

Latest commit

 

History

History
71 lines (43 loc) · 1.48 KB

DetokenizeApi.md

File metadata and controls

71 lines (43 loc) · 1.48 KB

\DetokenizeApi

All URIs are relative to https://api.basistheory.com

Method HTTP request Description
Detokenize Post /detokenize

Detokenize

Detokenize(ctx).Body(body).Execute()

Example

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)
    }
}

Path Parameters

Other Parameters

Other parameters are passed through a pointer to a apiDetokenizeRequest struct via the builder pattern

Name Type Description Notes
body interface{}

Return type

(empty response body)

Authorization

ApiKey

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]