Requires the role: | manager |
GET | /payments/{Id} |
---|
export class GetOperationUnTenanted<TResponse> implements IHasGetOptions, IGet
{
public embed?: string;
public constructor(init?: Partial<GetOperationUnTenanted<TResponse>>) { (Object as any).assign(this, init); }
}
export class GetOperationTenanted<TResponse> extends GetOperationUnTenanted<TResponse> implements ITenantedRequest
{
public organisationId?: string;
public constructor(init?: Partial<GetOperationTenanted<TResponse>>) { super(init); (Object as any).assign(this, init); }
}
export class BankAccount
{
public bsbNumber?: string;
public accountNumber?: string;
public constructor(init?: Partial<BankAccount>) { (Object as any).assign(this, init); }
}
export class Payment implements IIdentifiableResource
{
public salaryPackageId?: string;
public amount: number;
public gstAmount: number;
public particulars?: string;
public budgetCategory?: string;
public status?: string;
public toAccount?: BankAccount;
public id?: string;
public constructor(init?: Partial<Payment>) { (Object as any).assign(this, init); }
}
export class GetPaymentResponse
{
public responseStatus?: ResponseStatus;
public payment?: Payment;
public constructor(init?: Partial<GetPaymentResponse>) { (Object as any).assign(this, init); }
}
export class GetPaymentRequest extends GetOperationTenanted<GetPaymentResponse>
{
public id?: string;
public constructor(init?: Partial<GetPaymentRequest>) { super(init); (Object as any).assign(this, init); }
}
TypeScript GetPaymentRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .csv suffix or ?format=csv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /payments/{Id} HTTP/1.1 Host: staging-api.billiecart.com.au Accept: text/csv
HTTP/1.1 200 OK Content-Type: text/csv Content-Length: length {"responseStatus":{"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}},"payment":{"salaryPackageId":"String","amount":0,"gstAmount":0,"particulars":"String","budgetCategory":"String","status":"String","toAccount":{"bsbNumber":"String","accountNumber":"String"},"id":"String"}}