| Requires any of the roles: | Client, Admin, Partner |
| GET | /partner_invites |
|---|
import java.math.*;
import java.util.*;
import java.io.InputStream;
import net.servicestack.client.*;
import com.google.gson.annotations.*;
import com.google.gson.reflect.*;
public class dtos
{
@DataContract
public static class PartnerInvitesLookup
{
@DataMember(Order=2)
public String TemplateText = null;
@DataMember(Order=3)
public UUID InviteGuid = null;
@DataMember(Order=4)
public Integer PartnerAppUserId = null;
@DataMember(Order=5)
public Date DateCreated = null;
@DataMember(Order=6)
public Date DateSent = null;
@DataMember(Order=7)
public String Recipients = null;
@DataMember(Order=8)
public String Reference = null;
@DataMember(Order=9)
public Integer RetryCount = null;
@DataMember(Order=10)
public Long StatusCodesId = null;
public String getTemplateText() { return TemplateText; }
public PartnerInvitesLookup setTemplateText(String value) { this.TemplateText = value; return this; }
public UUID getInviteGuid() { return InviteGuid; }
public PartnerInvitesLookup setInviteGuid(UUID value) { this.InviteGuid = value; return this; }
public Integer getPartnerAppUserId() { return PartnerAppUserId; }
public PartnerInvitesLookup setPartnerAppUserId(Integer value) { this.PartnerAppUserId = value; return this; }
public Date getDateCreated() { return DateCreated; }
public PartnerInvitesLookup setDateCreated(Date value) { this.DateCreated = value; return this; }
public Date getDateSent() { return DateSent; }
public PartnerInvitesLookup setDateSent(Date value) { this.DateSent = value; return this; }
public String getRecipients() { return Recipients; }
public PartnerInvitesLookup setRecipients(String value) { this.Recipients = value; return this; }
public String getReference() { return Reference; }
public PartnerInvitesLookup setReference(String value) { this.Reference = value; return this; }
public Integer getRetryCount() { return RetryCount; }
public PartnerInvitesLookup setRetryCount(Integer value) { this.RetryCount = value; return this; }
public Long getStatusCodesId() { return StatusCodesId; }
public PartnerInvitesLookup setStatusCodesId(Long value) { this.StatusCodesId = value; return this; }
}
}
Java PartnerInvitesLookup 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 /partner_invites HTTP/1.1 Host: duengageapi.uat.scadsoftware.com Accept: text/csv
HTTP/1.1 200 OK
Content-Type: text/csv
Content-Length: length
[{"TemplateText":"String","InviteGuid":"00000000000000000000000000000000","PartnerAppUserId":0,"DateCreated":"0001-01-01T00:00:00.0000000+00:00","DateSent":"0001-01-01T00:00:00.0000000+00:00","Recipients":"String","Reference":"String","RetryCount":0,"StatusCodesId":0,"ResponseStatus":{"ErrorCode":"String","Message":"String","StackTrace":"String","Errors":[{"ErrorCode":"String","FieldName":"String","Message":"String","Meta":{"String":"String"}}],"Meta":{"String":"String"}}}]