This documentation is currently under development. Certain sections are not yet complete and will be added shortly.
For the complete documentation index, see llms.txt. This page is also available as Markdown.

Line Sign In

Get sign in with LINE settings

get
/api/{tenantId}/admin/socialSignIn/line

Returns the LINE Login channel configuration stored in server/line.yml.

Authorization

Requires tenant.configuration.connector.social:read scope.

Required scopes
This endpoint requires the following scopes:
Authorizations
OAuth2implicitRequired
Authorization URL:
Path parameters
tenantIdstringRequired
Responses
200

Settings returned.

Sign in with LINE settings.

clientIdstringRequired

LINE Login Channel ID.

get/api/{tenantId}/admin/socialSignIn/line
GET /api/{tenantId}/admin/socialSignIn/line HTTP/1.1
Host: app.neostore.cloud
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
{
  "clientId": "text"
}

Configure sign in with LINE

put
/api/{tenantId}/admin/socialSignIn/line

Creates or replaces the LINE Login channel configuration.

Authorization

Requires tenant.configuration.connector.social:write scope.

Required scopes
This endpoint requires the following scopes:
Authorizations
OAuth2implicitRequired
Authorization URL:
Path parameters
tenantIdstringRequired
Body

Request body to configure sign in with LINE.

clientIdstring · min: 1Required

LINE Login Channel ID.

Responses
200

Settings updated.

Sign in with LINE settings.

clientIdstringRequired

LINE Login Channel ID.

put/api/{tenantId}/admin/socialSignIn/line
PUT /api/{tenantId}/admin/socialSignIn/line HTTP/1.1
Host: app.neostore.cloud
Authorization: Bearer YOUR_OAUTH2_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 19

{
  "clientId": "text"
}
200

Settings updated.

{
  "clientId": "text"
}

Delete sign in with LINE settings

delete
/api/{tenantId}/admin/socialSignIn/line

Removes the LINE Login channel configuration stored in server/line.yml, disabling sign in with LINE for the tenant. This bypasses the ClientId required-field validation enforced on PUT, since a delete does not require a valid configuration.

Authorization

Requires tenant.configuration.connector.social:write scope.

Required scopes
This endpoint requires the following scopes:
Authorizations
OAuth2implicitRequired
Authorization URL:
Path parameters
tenantIdstringRequired
Responses
204

Configuration deleted.

No content

delete/api/{tenantId}/admin/socialSignIn/line
DELETE /api/{tenantId}/admin/socialSignIn/line HTTP/1.1
Host: app.neostore.cloud
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
204

Configuration deleted.

No content

Last updated