Apply for playground access.
POST/users/apply
Apply for access to the Aleph Alpha playground.
Request
- application/json
Bodyrequired
emailstringrequired
User's email address
first_namestring
User's first name
last_namestring
User's last name
organization_typestringrequired
Type or organization; must be one of 'AcademicInstitute' or 'ResearchInstitute'
Possible values: [AcademicInstitute
, ResearchInstitute
]
reasonstring
Reason for applying
newsletter_signupboolean
Whether to signup for the Aleph Alpha newsletter.
Default value:
false
email_usage_consentbooleanrequired
Whether the user consents usage of the email address; must be set to true.
Default value:
false
Responses
- 204
OK
- csharp
- curl
- dart
- go
- http
- java
- javascript
- kotlin
- c
- nodejs
- objective-c
- ocaml
- php
- powershell
- python
- r
- ruby
- rust
- shell
- swift
- HTTPCLIENT
- RESTSHARP
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Post, "https://docs.aleph-alpha.com/users/apply");
var content = new StringContent("{\n \"email\": \"string\",\n \"first_name\": \"string\",\n \"last_name\": \"string\",\n \"organization_type\": \"AcademicInstitute\",\n \"reason\": \"string\",\n \"newsletter_signup\": false,\n \"email_usage_consent\": false\n}", null, "application/json");
request.Content = content;
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());