Pera ServiceStack

<back to all web services

StripeCardRequest

The following routes are available for this service:
GET,PUT,OPTIONS/v1/StripeCard
POST,OPTIONS/v1/StripeCard/{Token}/{CustomerId}

To override the Content-type in your clients HTTP Accept Header, append the .jsv suffix or ?format=jsv

HTTP + JSV

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /jsv/reply/StripeCardRequest HTTP/1.1 
Host: api2.publicemployeeretirementassistance.com 
Content-Type: text/jsv
Content-Length: length

{
	StripeCard: 
	[
		{
			StripeCardId: String,
			StripeCustomerId: String,
			AgentId: 0,
			Last4: String,
			NickName: String,
			IsDefault: False,
			Deleted: False,
			StripeSource: 
			{
				id: String,
				exp_month: String,
				exp_year: 0,
				address_city: String,
				address_line1: String,
				address_line2: String,
				address_state: String,
				address_zip: String,
				name: String
			}
		}
	],
	UpdateDefault: False,
	Token: String,
	CustomerId: String
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	ResponseStatus: 
	{
		ErrorCode: String,
		Message: String,
		StackTrace: String,
		Errors: 
		[
			{
				ErrorCode: String,
				FieldName: String,
				Message: String
			}
		]
	},
	StripeCard: 
	[
		{
			StripeCardId: String,
			StripeCustomerId: String,
			AgentId: 0,
			Last4: String,
			NickName: String,
			IsDefault: False,
			Deleted: False,
			StripeSource: 
			{
				id: String,
				exp_month: String,
				exp_year: 0,
				address_city: String,
				address_line1: String,
				address_line2: String,
				address_state: String,
				address_zip: String,
				name: String
			}
		}
	]
}