Arlo

REST Auth API: EventRegistrationSummaryCounts

EventRegistrationSummaryCounts resources are a subresource of Event, and shows registration related stats.

EventRegistrationSummaryCounts instance resource

Resource URI

/api/2012-02-01/auth/resources/events/{EventID}/registrationsummarycounts/

Resource properties

Property Description
Approved An integer value specifying the number of approved registrations on this event.
AwaitingApproval An integer value specifying the number of registrations awaiting approval on this event.
Cancelled An integer value specifying the number of cancelled registrations on this event.
Completed An integer value specifying the number of completed registrations on this event.
NotCancelled An integer value specifying the number of registrations not cancelled on this event.

HTTP GET

Returns a representation of an EventRegistrationSummaryCounts resource, including the properties above.

Example 1

Returns an EventRegistrationSummaryCounts representation for an Event that has 1 approved, 2 awaiting approval, 3 completed, 4 cancelled and 7 not cancelled registrations.

GET /api/2012-02-01/auth/resources/events/1/registrationsummarycounts/

<EventRegistrationSummaryCounts>
<Approved>1</Approved>
<AwaitingApproval>2</AwaitingApproval>
<Cancelled>3</Cancelled>
<Completed>4</Completed>
<NotCancelled>7</NotCancelled>
<Link rel="self" type="application/xml" href="https://demo.arlo.co/api/2012-02-01/auth/resources/events/1/registrationsummarycounts/"/>
</EventRegistrationSummaryCounts>

HTTP POST

Not supported.

HTTP PUT

Not supported.

HTTP DELETE

Not supported.