Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove obsolete feature: Audience Match #80

Merged
merged 1 commit into from
Jan 20, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 0 additions & 43 deletions messaging-api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1738,25 +1738,6 @@ paths:
schema:
"$ref": "#/components/schemas/ErrorResponse"

"/bot/ad/multicast/phone":
post:
externalDocs:
url: https://developers.line.biz/en/reference/partner-docs/#phone-audience-match
tags:
- messaging-api
operationId: audienceMatch
description: "Send a message using phone number"
requestBody:
content:
application/json:
schema:
"$ref": "#/components/schemas/AudienceMatchMessagesRequest"
required: true
responses:
"200":
description: "OK"
# empty JSON response

"/v2/bot/message/delivery/pnp":
get:
externalDocs:
Expand Down Expand Up @@ -3445,30 +3426,6 @@ components:
description: "Message destination. Specify a phone number that has been normalized to E.164 format and hashed with SHA256."
notificationDisabled:
"$ref": "#/components/schemas/NotificationDisabled"
AudienceMatchMessagesRequest:
externalDocs:
url: https://developers.line.biz/en/reference/partner-docs/#phone-audience-match
required:
- messages
- to
type: object
properties:
messages:
description: "Destination of the message (A value obtained by hashing the telephone number, which is another value normalized to E.164 format, with SHA256)."
maxItems: 5
minItems: 1
type: array
items:
"$ref": "#/components/schemas/Message"
to:
description: "Message to send."
maxItems: 500
minItems: 1
type: array
items:
type: string
notificationDisabled:
"$ref": "#/components/schemas/NotificationDisabled"

# Message objects
Message:
Expand Down
Loading