POST | /users/{UserId}/add-waiver | Add a waiver for a user. |
---|
using System;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization;
using ServiceStack;
using ServiceStack.DataAnnotations;
using ClubReady.Web.Api.Members.Model;
using ClubReady.Web.Api;
namespace ClubReady.Web.Api
{
public enum RestrictedResourceType
{
Store,
Chain,
User,
Undefined,
}
}
namespace ClubReady.Web.Api.Members.Model
{
public partial class AddUserWaiverRequest
: IRestrictedApiRequest
{
///<summary>
///Api Key - Grants access to resources
///</summary>
[ApiMember(DataType="string", Description="Api Key - Grants access to resources", IsRequired=true, Name="ApiKey", ParameterType="query")]
public virtual string ApiKey { get; set; }
///<summary>
///Store ID
///</summary>
[ApiMember(DataType="integer", Description="Store ID", IsRequired=true, Name="StoreId", ParameterType="query")]
public virtual int StoreId { get; set; }
///<summary>
///ClubReady User ID
///</summary>
[ApiMember(DataType="integer", Description="ClubReady User ID", IsRequired=true, Name="UserId", ParameterType="path")]
public virtual int UserId { get; set; }
///<summary>
///Form ID
///</summary>
[ApiMember(DataType="integer", Description="Form ID", Name="FormId", ParameterType="query")]
public virtual int? FormId { get; set; }
///<summary>
///Base64 encoded PDF string
///</summary>
[ApiMember(DataType="string", Description="Base64 encoded PDF string", IsRequired=true, Name="WaiverPdf", ParameterType="form")]
public virtual string WaiverPdf { get; set; }
public virtual int? RestrictedId { get; set; }
public virtual RestrictedResourceType RestrictedResourceType { get; set; }
}
public partial class AddUserWaiverResponse
{
public virtual bool Success { get; set; }
public virtual string Message { get; set; }
}
}
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.
POST /users/{UserId}/add-waiver HTTP/1.1
Host: clubready.com
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
ApiKey: String,
StoreId: 0,
UserId: 0,
FormId: 0,
WaiverPdf: String,
RestrictedId: 0,
RestrictedResourceType: Store
}
HTTP/1.1 200 OK Content-Type: text/jsv Content-Length: length { Success: False, Message: String }