Applications
Create a New Application
Registers a new OAuth2 application. The authenticated user becomes the owner of the application.
post/applications/
Request body
Example request
{
"data": {
"type": "applications",
"attributes": {
"name": "My App",
"description": "An optional description",
"home_url": "https://example.com",
"callback_url": "https://example.com/oauth/callback"
}
}
}Response
OAuth2 Application successfully created.