Skip to content
Get started

Get payment-provider status

client.PaymentProviders.Get(ctx, provider) (*PaymentProvider, error)
GET/v3/payments/providers/{provider}

Returns your organization’s onboarding status for a payment provider.

ParametersExpand Collapse
provider string
ReturnsExpand Collapse
type PaymentProvider struct{…}
Provider stringOptional
Status PaymentProviderStatusOptional
One of the following:
const PaymentProviderStatusOnboarding PaymentProviderStatus = "onboarding"
const PaymentProviderStatusReady PaymentProviderStatus = "ready"
const PaymentProviderStatusDisabled PaymentProviderStatus = "disabled"

Get payment-provider status

package main

import (
  "context"
  "fmt"

  "github.com/linq-team/linq-go"
  "github.com/linq-team/linq-go/option"
)

func main() {
  client := linqgo.NewClient(
    option.WithAPIKey("My API Key"),
  )
  paymentProvider, err := client.PaymentProviders.Get(context.TODO(), "provider")
  if err != nil {
    panic(err.Error())
  }
  fmt.Printf("%+v\n", paymentProvider.Provider)
}
{
  "provider": "agentcard",
  "status": "ready"
}
{
  "error": {
    "status": 401,
    "code": 2004,
    "message": "Unauthorized - missing or invalid authentication token",
    "doc_url": "https://docs.linqapp.com/error/codes/2xxx/2004/"
  },
  "success": false
}
{
  "error": {
    "status": 404,
    "code": 2001,
    "message": "Resource not found",
    "doc_url": "https://docs.linqapp.com/error/codes/2xxx/2001/"
  },
  "success": false
}
{
  "error": {
    "status": 500,
    "code": 3006,
    "message": "Internal server error",
    "doc_url": "https://docs.linqapp.com/error/codes/3xxx/3006/"
  },
  "success": false
}
Returns Examples
{
  "provider": "agentcard",
  "status": "ready"
}
{
  "error": {
    "status": 401,
    "code": 2004,
    "message": "Unauthorized - missing or invalid authentication token",
    "doc_url": "https://docs.linqapp.com/error/codes/2xxx/2004/"
  },
  "success": false
}
{
  "error": {
    "status": 404,
    "code": 2001,
    "message": "Resource not found",
    "doc_url": "https://docs.linqapp.com/error/codes/2xxx/2001/"
  },
  "success": false
}
{
  "error": {
    "status": 500,
    "code": 3006,
    "message": "Internal server error",
    "doc_url": "https://docs.linqapp.com/error/codes/3xxx/3006/"
  },
  "success": false
}