Struct ramp_api::cards::Cards[][src]

pub struct Cards {
    pub client: Client,
}

Fields

client: Client

Implementations

List cards.

This function performs a GET to the /cards endpoint.

Retrieve all cards.

Parameters:

  • authorization: &str – The OAuth2 token header.
  • start: &str – The ID of the last entity of the previous page, used for pagination to get the next page.
  • page_size: f64 – The number of results to be returned in each page. The value must be between 2 and 10,000. If not specified, the default will be 1,000.
  • user_id: &str – The OAuth2 token header.
  • card_program_id: &str – The OAuth2 token header.

List cards.

This function performs a GET to the /cards endpoint.

As opposed to get, this function returns all the pages of the request at once.

Retrieve all cards.

GET a card.

This function performs a GET to the /cards/{id} endpoint.

Retrieve a single card.

Parameters:

  • authorization: &str – The OAuth2 token header.

Update card.

This function performs a PATCH to the /cards/{id} endpoint.

Update card details

Parameters:

  • authorization: &str – The OAuth2 token header.

Create a physical card.

This function performs a POST to the /cards/deferred/physical endpoint.

Parameters:

  • authorization: &str – The OAuth2 token header.

Create a virtual card.

This function performs a POST to the /cards/deferred/virtual endpoint.

Parameters:

  • authorization: &str – The OAuth2 token header.

Delete a card.

This function performs a POST to the /cards/{id}/deferred/termination endpoint.

Terminates a card permanently.

Suspend a card.

This function performs a POST to the /cards/{id}/deferred/suspension endpoint.

Suspends a card so that it is locked from use. The suspension is revertable.

Removes a card’s suspension.

This function performs a POST to the /cards/{id}/deferred/unsuspension endpoint.

Removes a card’s suspension so that it may be used again.

Get status of a deferred card task.

This function performs a GET to the /cards/deferred/status/{id} endpoint.

Gets status of a deferred task for cards

Parameters:

  • authorization: &str – The OAuth2 token header.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more