Requires any of the roles: | bookingsupplier-administrator-write, superadmin |
POST | /billing/company/creditcard | Add a new credit card with Ticket Id from payment solution. | Add new credit card from payment solution with their ticket id. |
---|
using System;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization;
using ServiceStack;
using ServiceStack.DataAnnotations;
using BokaMera.API.ServiceModel.Dtos;
namespace BokaMera.API.ServiceModel.Dtos
{
public partial class CompanyCreditCardQueryResponse
{
///<summary>
///The credit card id
///</summary>
[ApiMember(Description="The credit card id")]
public virtual int Id { get; set; }
///<summary>
///The credit card name
///</summary>
[ApiMember(Description="The credit card name")]
public virtual string Name { get; set; }
///<summary>
///If the credit card is active
///</summary>
[ApiMember(Description="If the credit card is active")]
public virtual bool Active { get; set; }
///<summary>
///If the credit card is valid (active and not expired)
///</summary>
[ApiMember(Description="If the credit card is valid (active and not expired)")]
public virtual bool IsValid { get; set; }
///<summary>
///The credit card type
///</summary>
[ApiMember(Description="The credit card type")]
public virtual string Type { get; set; }
///<summary>
///The credit card expiration Year
///</summary>
[ApiMember(Description="The credit card expiration Year")]
public virtual string ExpYear { get; set; }
///<summary>
///The credit card expiration month
///</summary>
[ApiMember(Description="The credit card expiration month")]
public virtual string ExpMonth { get; set; }
///<summary>
///The credit card ticket name. This is secret information and won't be displayed
///</summary>
[ApiMember(Description="The credit card ticket name. This is secret information and won't be displayed")]
public virtual string TicketId { get; set; }
///<summary>
///The date when the credit card was saved.
///</summary>
[ApiMember(Description="The date when the credit card was saved.")]
public virtual DateTime? Created { get; set; }
///<summary>
///The date when the credit card was updated.
///</summary>
[ApiMember(Description="The date when the credit card was updated.")]
public virtual DateTime? Updated { get; set; }
}
[ApiResponse(Description="You were unauthorized to call this service", StatusCode=401)]
[ValidateRequest("IsAuthenticated")]
public partial class CreateCompanyCreditCard
: ICompany
{
///<summary>
///The company id, if empty will use the company id for the user you are logged in with.
///</summary>
[ApiMember(Description="The company id, if empty will use the company id for the user you are logged in with.")]
public virtual Guid? CompanyId { get; set; }
///<summary>
///The credit card name
///</summary>
[ApiMember(Description="The credit card name")]
public virtual string Name { get; set; }
///<summary>
///The credit card type. In example Mastercard, Visa
///</summary>
[ApiMember(Description="The credit card type. In example Mastercard, Visa")]
public virtual string Type { get; set; }
///<summary>
///The credit card expiration Year
///</summary>
[ApiMember(Description="The credit card expiration Year")]
public virtual string ExpYear { get; set; }
///<summary>
///The credit card expiration month
///</summary>
[ApiMember(Description="The credit card expiration month")]
public virtual string ExpMonth { get; set; }
///<summary>
///The credit card ticket name. This is secret information and won't be displayed
///</summary>
[ApiMember(Description="The credit card ticket name. This is secret information and won't be displayed")]
public virtual string TicketId { get; set; }
}
}
C# CreateCompanyCreditCard DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /billing/company/creditcard HTTP/1.1
Host: api.bokamera.se
Accept: application/xml
Content-Type: application/xml
Content-Length: length
<CreateCompanyCreditCard xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BokaMera.API.ServiceModel.Dtos">
<CompanyId>00000000-0000-0000-0000-000000000000</CompanyId>
<ExpMonth>String</ExpMonth>
<ExpYear>String</ExpYear>
<Name>String</Name>
<TicketId>String</TicketId>
<Type>String</Type>
</CreateCompanyCreditCard>
HTTP/1.1 200 OK Content-Type: application/xml Content-Length: length <CompanyCreditCardQueryResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BokaMera.API.ServiceModel.Dtos"> <Active>false</Active> <Created>0001-01-01T00:00:00</Created> <ExpMonth>String</ExpMonth> <ExpYear>String</ExpYear> <Id>0</Id> <IsValid>false</IsValid> <Name>String</Name> <TicketId>String</TicketId> <Type>String</Type> <Updated>0001-01-01T00:00:00</Updated> </CompanyCreditCardQueryResponse>