| Requires any of the roles: | Client, Admin, Partner |
| PUT | /invoice_files/{Id} |
|---|
import java.math.*;
import java.util.*;
import java.io.InputStream;
import net.servicestack.client.*;
public class dtos
{
@DataContract
public static class InvoiceFilesEdit
{
@DataMember(Order=1)
@Validate(Validator="NotNull")
public Long Id = null;
@DataMember(Order=2)
@Validate(Validator="NotNull")
public Integer TenantsId = null;
@DataMember(Order=3)
@Validate(Validator="NotNull")
public Long DebtsId = null;
@DataMember(Order=4)
@Validate(Validator="NotNull")
public String InvoiceUrl = null;
public Long getId() { return Id; }
public InvoiceFilesEdit setId(Long value) { this.Id = value; return this; }
public Integer getTenantsId() { return TenantsId; }
public InvoiceFilesEdit setTenantsId(Integer value) { this.TenantsId = value; return this; }
public Long getDebtsId() { return DebtsId; }
public InvoiceFilesEdit setDebtsId(Long value) { this.DebtsId = value; return this; }
public String getInvoiceUrl() { return InvoiceUrl; }
public InvoiceFilesEdit setInvoiceUrl(String value) { this.InvoiceUrl = value; return this; }
}
public static class InvoiceFilesEditResponse
{
@DataMember(Order=1)
public Long Id = null;
@DataMember(Order=2)
public Integer TenantsId = null;
@DataMember(Order=3)
public Long DebtsId = null;
@DataMember(Order=4)
public String InvoiceUrl = null;
@DataMember(Order=6)
public ResponseStatus ResponseStatus = null;
public Long getId() { return Id; }
public InvoiceFilesEditResponse setId(Long value) { this.Id = value; return this; }
public Integer getTenantsId() { return TenantsId; }
public InvoiceFilesEditResponse setTenantsId(Integer value) { this.TenantsId = value; return this; }
public Long getDebtsId() { return DebtsId; }
public InvoiceFilesEditResponse setDebtsId(Long value) { this.DebtsId = value; return this; }
public String getInvoiceUrl() { return InvoiceUrl; }
public InvoiceFilesEditResponse setInvoiceUrl(String value) { this.InvoiceUrl = value; return this; }
public ResponseStatus getResponseStatus() { return ResponseStatus; }
public InvoiceFilesEditResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; }
}
}
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.
PUT /invoice_files/{Id} HTTP/1.1
Host: duengageapi.uat.scadsoftware.com
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
Id: 0,
TenantsId: 0,
DebtsId: 0,
InvoiceUrl: String
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
{
Id: 0,
TenantsId: 0,
DebtsId: 0,
InvoiceUrl: String,
ResponseStatus:
{
ErrorCode: String,
Message: String,
StackTrace: String,
Errors:
[
{
ErrorCode: String,
FieldName: String,
Message: String,
Meta:
{
String: String
}
}
],
Meta:
{
String: String
}
}
}