| Copyright | (c) Alexandre Moreno 2019 | 
|---|---|
| License | BSD3 | 
| Maintainer | alexmorenocano@gmail.com | 
| Stability | experimental | 
| Safe Haskell | None | 
| Language | Haskell2010 | 
Line.Bot.Internal.Endpoints
Description
Synopsis
- type ChannelAuth = AuthProtect "channel-access-token"
 - type GetProfile' a = "v2" :> ("bot" :> ("profile" :> (Capture "userId" (Id User) :> (ChannelAuth :> Get '[JSON] a))))
 - type GetProfile = GetProfile' Profile
 - type GetGroupMemberProfile' a = "v2" :> ("bot" :> ("group" :> (Capture "groupId" (Id Group) :> ("member" :> (Capture "userId" (Id User) :> (ChannelAuth :> Get '[JSON] a))))))
 - type GetGroupMemberProfile = GetGroupMemberProfile' Profile
 - type LeaveGroup = "v2" :> ("bot" :> ("group" :> (Capture "groupId" (Id Group) :> ("leave" :> (ChannelAuth :> PostNoContent '[JSON] NoContent)))))
 - type GetGroupMemberUserIds' a = "v2" :> ("bot" :> ("group" :> (Capture "groupId" (Id Group) :> ("members" :> ("ids" :> (QueryParam "start" String :> (ChannelAuth :> Get '[JSON] a)))))))
 - type GetGroupMemberUserIds = GetGroupMemberUserIds' MemberIds
 - type GetRoomMemberProfile' a = "v2" :> ("bot" :> ("room" :> (Capture "roomId" (Id Room) :> ("member" :> (Capture "userId" (Id User) :> (ChannelAuth :> Get '[JSON] a))))))
 - type GetRoomMemberProfile = GetRoomMemberProfile' Profile
 - type LeaveRoom = "v2" :> ("bot" :> ("room" :> (Capture "roomId" (Id Room) :> ("leave" :> (ChannelAuth :> PostNoContent '[JSON] NoContent)))))
 - type GetRoomMemberUserIds' a = "v2" :> ("bot" :> ("room" :> (Capture "roomId" (Id Room) :> ("members" :> ("ids" :> (QueryParam "start" String :> (ChannelAuth :> Get '[JSON] a)))))))
 - type GetRoomMemberUserIds = GetRoomMemberUserIds' MemberIds
 - type ReplyMessage' a = "v2" :> ("bot" :> ("message" :> ("reply" :> (ReqBody '[JSON] a :> (ChannelAuth :> PostNoContent '[JSON] NoContent)))))
 - type ReplyMessage = ReplyMessage' ReplyMessageBody
 - type PushMessage' a = "v2" :> ("bot" :> ("message" :> ("push" :> (ReqBody '[JSON] a :> (ChannelAuth :> PostNoContent '[JSON] NoContent)))))
 - type PushMessage = PushMessage' PushMessageBody
 - type MulticastMessage' a = "v2" :> ("bot" :> ("message" :> ("multicast" :> (ReqBody '[JSON] a :> (ChannelAuth :> PostNoContent '[JSON] NoContent)))))
 - type MulticastMessage = MulticastMessage' MulticastMessageBody
 - type BroadcastMessage' a = "v2" :> ("bot" :> ("message" :> ("broadcast" :> (ReqBody '[JSON] a :> (ChannelAuth :> PostNoContent '[JSON] NoContent)))))
 - type BroadcastMessage = BroadcastMessage' BroadcastMessageBody
 - type GetContent = "v2" :> ("bot" :> ("message" :> (Capture "messageId" MessageId :> ("content" :> (ChannelAuth :> Get '[OctetStream] ByteString)))))
 - type GetContentStream = "v2" :> ("bot" :> ("message" :> (Capture "messageId" MessageId :> ("content" :> (ChannelAuth :> StreamGet NoFraming OctetStream (SourceIO ByteString))))))
 - type GetReplyMessageCount' a b = "v2" :> ("bot" :> ("message" :> ("delivery" :> ("reply" :> (QueryParam' '[Required, Strict] "date" a :> (ChannelAuth :> Get '[JSON] b))))))
 - type GetReplyMessageCount = GetReplyMessageCount' LineDate MessageCount
 - type GetPushMessageCount' a b = "v2" :> ("bot" :> ("message" :> ("delivery" :> ("push" :> (QueryParam' '[Required, Strict] "date" a :> (ChannelAuth :> Get '[JSON] b))))))
 - type GetPushMessageCount = GetPushMessageCount' LineDate MessageCount
 - type GetMulticastMessageCount' a b = "v2" :> ("bot" :> ("message" :> ("delivery" :> ("multicast" :> (QueryParam' '[Required, Strict] "date" a :> (ChannelAuth :> Get '[JSON] b))))))
 - type GetMulticastMessageCount = GetMulticastMessageCount' LineDate MessageCount
 - type GetBroadcastMessageCount' a b = "v2" :> ("bot" :> ("message" :> ("delivery" :> ("broadcast" :> (QueryParam' '[Required, Strict] "date" a :> (ChannelAuth :> Get '[JSON] b))))))
 - type GetBroadcastMessageCount = GetBroadcastMessageCount' LineDate MessageCount
 - type GetMessageQuota' a = "v2" :> ("bot" :> ("message" :> ("quota" :> ("consumption" :> (ChannelAuth :> Get '[JSON] a)))))
 - type GetMessageQuota = GetMessageQuota' MessageQuota
 - type IssueLinkToken' a = "v2" :> ("bot" :> ("user" :> (Capture "userId" (Id User) :> ("linkToken" :> (ChannelAuth :> Get '[JSON] a)))))
 - type IssueLinkToken = IssueLinkToken' LinkToken
 - type IssueChannelToken' a b = "v2" :> ("oauth" :> ("accessToken" :> (ReqBody '[FormUrlEncoded] a :> Post '[JSON] b)))
 - type IssueChannelToken = IssueChannelToken' ClientCredentials ShortLivedChannelToken
 - type RevokeChannelToken' a = "v2" :> ("oauth" :> ("revoke" :> (ReqBody '[FormUrlEncoded] a :> PostNoContent '[JSON] NoContent)))
 - type RevokeChannelToken = RevokeChannelToken' ChannelToken
 
Documentation
type ChannelAuth = AuthProtect "channel-access-token" Source #
Combinator for authenticating with the channel access token
type GetProfile' a = "v2" :> ("bot" :> ("profile" :> (Capture "userId" (Id User) :> (ChannelAuth :> Get '[JSON] a)))) Source #
type GetProfile = GetProfile' Profile Source #
type GetGroupMemberProfile' a = "v2" :> ("bot" :> ("group" :> (Capture "groupId" (Id Group) :> ("member" :> (Capture "userId" (Id User) :> (ChannelAuth :> Get '[JSON] a)))))) Source #
type LeaveGroup = "v2" :> ("bot" :> ("group" :> (Capture "groupId" (Id Group) :> ("leave" :> (ChannelAuth :> PostNoContent '[JSON] NoContent))))) Source #
type GetGroupMemberUserIds' a = "v2" :> ("bot" :> ("group" :> (Capture "groupId" (Id Group) :> ("members" :> ("ids" :> (QueryParam "start" String :> (ChannelAuth :> Get '[JSON] a))))))) Source #
type GetRoomMemberProfile' a = "v2" :> ("bot" :> ("room" :> (Capture "roomId" (Id Room) :> ("member" :> (Capture "userId" (Id User) :> (ChannelAuth :> Get '[JSON] a)))))) Source #
type LeaveRoom = "v2" :> ("bot" :> ("room" :> (Capture "roomId" (Id Room) :> ("leave" :> (ChannelAuth :> PostNoContent '[JSON] NoContent))))) Source #
type GetRoomMemberUserIds' a = "v2" :> ("bot" :> ("room" :> (Capture "roomId" (Id Room) :> ("members" :> ("ids" :> (QueryParam "start" String :> (ChannelAuth :> Get '[JSON] a))))))) Source #
type ReplyMessage' a = "v2" :> ("bot" :> ("message" :> ("reply" :> (ReqBody '[JSON] a :> (ChannelAuth :> PostNoContent '[JSON] NoContent))))) Source #
type PushMessage' a = "v2" :> ("bot" :> ("message" :> ("push" :> (ReqBody '[JSON] a :> (ChannelAuth :> PostNoContent '[JSON] NoContent))))) Source #
type MulticastMessage' a = "v2" :> ("bot" :> ("message" :> ("multicast" :> (ReqBody '[JSON] a :> (ChannelAuth :> PostNoContent '[JSON] NoContent))))) Source #
type BroadcastMessage' a = "v2" :> ("bot" :> ("message" :> ("broadcast" :> (ReqBody '[JSON] a :> (ChannelAuth :> PostNoContent '[JSON] NoContent))))) Source #
type GetContent = "v2" :> ("bot" :> ("message" :> (Capture "messageId" MessageId :> ("content" :> (ChannelAuth :> Get '[OctetStream] ByteString))))) Source #
type GetContentStream = "v2" :> ("bot" :> ("message" :> (Capture "messageId" MessageId :> ("content" :> (ChannelAuth :> StreamGet NoFraming OctetStream (SourceIO ByteString)))))) Source #
type GetReplyMessageCount' a b = "v2" :> ("bot" :> ("message" :> ("delivery" :> ("reply" :> (QueryParam' '[Required, Strict] "date" a :> (ChannelAuth :> Get '[JSON] b)))))) Source #
type GetPushMessageCount' a b = "v2" :> ("bot" :> ("message" :> ("delivery" :> ("push" :> (QueryParam' '[Required, Strict] "date" a :> (ChannelAuth :> Get '[JSON] b)))))) Source #
type GetMulticastMessageCount' a b = "v2" :> ("bot" :> ("message" :> ("delivery" :> ("multicast" :> (QueryParam' '[Required, Strict] "date" a :> (ChannelAuth :> Get '[JSON] b)))))) Source #
type GetBroadcastMessageCount' a b = "v2" :> ("bot" :> ("message" :> ("delivery" :> ("broadcast" :> (QueryParam' '[Required, Strict] "date" a :> (ChannelAuth :> Get '[JSON] b)))))) Source #
type GetMessageQuota' a = "v2" :> ("bot" :> ("message" :> ("quota" :> ("consumption" :> (ChannelAuth :> Get '[JSON] a))))) Source #
type IssueLinkToken' a = "v2" :> ("bot" :> ("user" :> (Capture "userId" (Id User) :> ("linkToken" :> (ChannelAuth :> Get '[JSON] a))))) Source #
type IssueChannelToken' a b = "v2" :> ("oauth" :> ("accessToken" :> (ReqBody '[FormUrlEncoded] a :> Post '[JSON] b))) Source #
type RevokeChannelToken' a = "v2" :> ("oauth" :> ("revoke" :> (ReqBody '[FormUrlEncoded] a :> PostNoContent '[JSON] NoContent))) Source #