POST
/
payment-methods
/
{payment_method_id}
/
network-tokens
/
{network_token_id}
/
resume
using Gr4vy;
using Gr4vy.Models.Components;

var sdk = new Gr4vySDK(
    id: "example",
    server: SDKConfig.Server.Sandbox,
    bearerAuthSource: Auth.WithToken(privateKey),
    merchantAccountId: "default"
);

var res = await sdk.PaymentMethods.NetworkTokens.ResumeAsync(
    paymentMethodId: "ef9496d8-53a5-4aad-8ca2-00eb68334389",
    networkTokenId: "f8dd5cfc-7834-4847-95dc-f75a360e2298"
);

// handle response
{
  "type": "network-token",
  "id": "918f6c9b-5d11-4897-98dc-23fda6fe0055",
  "expiration_date": "12/30",
  "payment_method_id": "ef9496d8-53a5-4aad-8ca2-00eb68334389",
  "status": "active",
  "token": "4111123456789012",
  "created_at": "2013-07-16T19:23:00.000+00:00",
  "updated_at": "2013-07-16T19:23:00.000+00:00"
}

This endpoint requires the payment-methods.write scope.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

x-gr4vy-merchant-account-id
string

The ID of the merchant account to use for this request.

Examples:

"default"

Path Parameters

payment_method_id
string
required

The ID of the payment method

Examples:

"ef9496d8-53a5-4aad-8ca2-00eb68334389"

network_token_id
string
required

The ID of the network token

Examples:

"f8dd5cfc-7834-4847-95dc-f75a360e2298"

Response

200
application/json

Successful Response

The response is of type object.