Skip to main content

rsvp

POST 

https://locksmith.unlock-protocol.com/v2/rsvp/:network/:lockAddress

User applies to attend an event.

Request

Responses

Successfully applied to event
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Post, "https://locksmith.unlock-protocol.com/v2/rsvp/:network/:lockAddress");
request.Headers.Add("Accept", "application/json");
var content = new StringContent("{\n \"recipient\": \"string\",\n \"email\": \"string\",\n \"data\": {}\n}", null, "application/json");
request.Content = content;
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
https://locksmith.unlock-protocol.com
Parameters
— pathrequired
— pathrequired
— headerrequired
Body
{
  "recipient": "string",
  "email": "string",
  "data": {}
}
ResponseClear

Click the Send API Request button above and see the response here!