Required role: | REGISUserRole |
POST | /Beanstream/Payment/{uuid}/CreditCard/Create |
---|
export class BeanstreamCreditCardCompletionResponse
{
public uuid: string;
public id: string;
public approved: boolean;
public message: string;
public order_number: string;
public constructor(init?: Partial<BeanstreamCreditCardCompletionResponse>) { (Object as any).assign(this, init); }
}
export class BeanstreamCreditCardPaymentRequest
{
public uuid: string;
public department: string;
public item: string;
public amount: number;
public name: string;
public customer_ip: string;
public email: string;
public addr1: string;
public addr2: string;
public city: string;
public state: string;
public country: string;
public code: string;
public phone: string;
public card_number: string;
public card_name: string;
public expiry_month: string;
public expiry_year: string;
public cvd: string;
public constructor(init?: Partial<BeanstreamCreditCardPaymentRequest>) { (Object as any).assign(this, init); }
}
TypeScript BeanstreamCreditCardPaymentRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /Beanstream/Payment/{uuid}/CreditCard/Create HTTP/1.1
Host: data.regent-college.edu
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
uuid: String,
department: String,
item: String,
amount: 0,
name: String,
customer_ip: String,
email: String,
addr1: String,
addr2: String,
city: String,
state: String,
country: String,
code: String,
phone: String,
card_number: String,
card_name: String,
expiry_month: String,
expiry_year: String,
cvd: String
}
HTTP/1.1 200 OK Content-Type: text/jsv Content-Length: length { uuid: String, id: String, approved: False, message: String, order_number: String }