PATCH
/
card_auth_loop_endpoint
/
{id}
curl --request PATCH \
  --url https://api.treasuryprime.com/card_auth_loop_endpoint/{id} \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '{
  "basic_secret": "secret",
  "basic_user": "organization_name",
  "url": "https://example.application.com/newurl"
}'
{
  "basic_secret": "<encrypted value>",
  "basic_user": "organization_name",
  "created_at": "2023-12-01T17:00:00Z",
  "id": "cale_11ghk0709srf",
  "updated_at": "2023-12-01T17:00:00Z",
  "url": "https://example.application.com/newurl",
  "userdata": null
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

id
string
required

Unique identifier for object

Body

application/json
The card_auth_loop_endpoint to update

The body is of type object.

Response

200 - application/json
The card_auth_loop_endpoint updated

The response is of type object.