Skip to content

Latest commit

 

History

History
77 lines (49 loc) · 2.06 KB

OrganizationConfirmationsApi.md

File metadata and controls

77 lines (49 loc) · 2.06 KB

\OrganizationConfirmationsApi

All URIs are relative to https://app.koyeb.com

Method HTTP request Description
ConfirmOrganizationAction Post /v1/organization_confirmations/{id} Confirm organization action

ConfirmOrganizationAction

map[string]interface{} ConfirmOrganizationAction(ctx, id).Execute()

Confirm organization action

Example

package main

import (
    "context"
    "fmt"
    "os"
    openapiclient "./openapi"
)

func main() {
    id := "id_example" // string | 

    configuration := openapiclient.NewConfiguration()
    apiClient := openapiclient.NewAPIClient(configuration)
    resp, r, err := apiClient.OrganizationConfirmationsApi.ConfirmOrganizationAction(context.Background(), id).Execute()
    if err != nil {
        fmt.Fprintf(os.Stderr, "Error when calling `OrganizationConfirmationsApi.ConfirmOrganizationAction``: %v\n", err)
        fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
    }
    // response from `ConfirmOrganizationAction`: map[string]interface{}
    fmt.Fprintf(os.Stdout, "Response from `OrganizationConfirmationsApi.ConfirmOrganizationAction`: %v\n", resp)
}

Path Parameters

Name Type Description Notes
ctx context.Context context for authentication, logging, cancellation, deadlines, tracing, etc.
id string

Other Parameters

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

Name Type Description Notes

Return type

map[string]interface{}

Authorization

Bearer

HTTP request headers

  • Content-Type: Not defined
  • Accept: /

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