PUT | /orgs/{OrganizationId}/invites/{UserId} |
---|
namespace TechStacks.ServiceModel
open System
open System.IO
open System.Collections
open System.Collections.Generic
open System.Runtime.Serialization
open ServiceStack
open ServiceStack.DataAnnotations
[<AllowNullLiteral>]
type UpdateOrganizationMemberInviteResponse() =
member val ResponseStatus:ResponseStatus = null with get,set
[<AllowNullLiteral>]
type UpdateOrganizationMemberInvite() =
interface IPut
member val OrganizationId:Int32 = new Int32() with get,set
member val UserName:String = null with get,set
member val Approve:Boolean = new Boolean() with get,set
member val Dismiss:Boolean = new Boolean() with get,set
F# UpdateOrganizationMemberInvite 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.
PUT /orgs/{OrganizationId}/invites/{UserId} HTTP/1.1
Host: techstacks.io
Accept: text/jsonl
Content-Type: text/jsonl
Content-Length: length
{"organizationId":0,"userName":"String","approve":false,"dismiss":false}
HTTP/1.1 200 OK Content-Type: text/jsonl Content-Length: length {"responseStatus":{"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}}}