GET | /orgs/{OrganizationId}/invites |
---|
import java.math.*
import java.util.*
import java.io.InputStream
import net.servicestack.client.*
open class GetOrganizationMemberInvites : IGet
{
open var organizationId:Int? = null
}
open class GetOrganizationMemberInvitesResponse
{
open var results:ArrayList<OrganizationMemberInvite>? = null
open var responseStatus:ResponseStatus? = null
}
open class OrganizationMemberInvite
{
open var id:Int? = null
open var organizationId:Int? = null
open var userId:Int? = null
open var userName:String? = null
open var dismissed:Date? = null
}
Kotlin GetOrganizationMemberInvites DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .other suffix or ?format=other
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /orgs/{OrganizationId}/invites HTTP/1.1 Host: techstacks.io Accept: text/jsonl
HTTP/1.1 200 OK Content-Type: text/jsonl Content-Length: length {"results":[{"id":0,"organizationId":0,"userId":0,"userName":"String","dismissed":"0001-01-01T00:00:00.0000000"}],"responseStatus":{"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}}}