-
Notifications
You must be signed in to change notification settings - Fork 947
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add /v2/bot/audienceGroup/shared path (#1546)
line/line-openapi#85 # Shared Audiences in Business Manager API Support We have added and supported new API endpoints related to Shared Audiences in Business Manager. ## API to Get Shared Audience Information You can obtain detailed information about a specific audience shared in Business Manager by calling the endpoint: - GET `https://api.line.me/v2/bot/audienceGroup/shared/{audienceGroupId}` ## API to Get List of Shared Audiences You can acquire a list of audiences shared in Business Manager using the following endpoint: - GET `https://api.line.me/v2/bot/audienceGroup/shared/list` By using the "Get Shared Audience Information" endpoint, you can retrieve more detailed data about each audience. ## Documents and Reference - News Announcement: [Shared Audience Feature Release](https://developers.line.biz/en/news/2025/02/12/shared-audience/) - API Reference: - [Get List of Shared Audiences](https://developers.line.biz/en/reference/messaging-api/#get-shared-audience-list) - [Get Shared Audience Information](https://developers.line.biz/en/reference/messaging-api/#get-shared-audience) - Documentation on Audience Sharing: [Using Audience Sharing](https://developers.line.biz/en/docs/messaging-api/using-audience/#audience-sharing) For more information, please refer to the links provided above. Co-authored-by: github-actions <[email protected]>
- Loading branch information
1 parent
b050d37
commit aaeef1a
Showing
8 changed files
with
350 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
50 changes: 50 additions & 0 deletions
50
...e-bot-manage-audience-client/src/main/java/com/linecorp/bot/audience/model/Adaccount.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
/* | ||
* Copyright 2023 LINE Corporation | ||
* | ||
* LINE Corporation licenses this file to you under the Apache License, | ||
* version 2.0 (the "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at: | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
* License for the specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
/** | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
* https://openapi-generator.tech Do not edit the class manually. | ||
*/ | ||
package com.linecorp.bot.audience.model; | ||
|
||
|
||
|
||
import com.fasterxml.jackson.annotation.JsonInclude; | ||
import com.fasterxml.jackson.annotation.JsonInclude.Include; | ||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
|
||
/** Adaccount */ | ||
@JsonInclude(Include.NON_NULL) | ||
@javax.annotation.Generated(value = "com.linecorp.bot.codegen.LineJavaCodegenGenerator") | ||
public record Adaccount( | ||
/** Ad account name. */ | ||
@JsonProperty("name") String name) { | ||
|
||
public static class Builder { | ||
private String name; | ||
|
||
public Builder() {} | ||
|
||
public Builder name(String name) { | ||
this.name = name; | ||
return this; | ||
} | ||
|
||
public Adaccount build() { | ||
return new Adaccount(name); | ||
} | ||
} | ||
} |
66 changes: 66 additions & 0 deletions
66
...t-manage-audience-client/src/main/java/com/linecorp/bot/audience/model/DetailedOwner.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
/* | ||
* Copyright 2023 LINE Corporation | ||
* | ||
* LINE Corporation licenses this file to you under the Apache License, | ||
* version 2.0 (the "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at: | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
* License for the specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
/** | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
* https://openapi-generator.tech Do not edit the class manually. | ||
*/ | ||
package com.linecorp.bot.audience.model; | ||
|
||
|
||
|
||
import com.fasterxml.jackson.annotation.JsonInclude; | ||
import com.fasterxml.jackson.annotation.JsonInclude.Include; | ||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
|
||
/** Owner of this audience group. */ | ||
@JsonInclude(Include.NON_NULL) | ||
@javax.annotation.Generated(value = "com.linecorp.bot.codegen.LineJavaCodegenGenerator") | ||
public record DetailedOwner( | ||
/** Service name where the audience group has been created. */ | ||
@JsonProperty("serviceType") String serviceType, | ||
/** Owner ID in the service. */ | ||
@JsonProperty("id") String id, | ||
/** Owner account name. */ | ||
@JsonProperty("name") String name) { | ||
|
||
public static class Builder { | ||
private String serviceType; | ||
private String id; | ||
private String name; | ||
|
||
public Builder() {} | ||
|
||
public Builder serviceType(String serviceType) { | ||
this.serviceType = serviceType; | ||
return this; | ||
} | ||
|
||
public Builder id(String id) { | ||
this.id = id; | ||
return this; | ||
} | ||
|
||
public Builder name(String name) { | ||
this.name = name; | ||
return this; | ||
} | ||
|
||
public DetailedOwner build() { | ||
return new DetailedOwner(serviceType, id, name); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
76 changes: 76 additions & 0 deletions
76
...e-client/src/main/java/com/linecorp/bot/audience/model/GetSharedAudienceDataResponse.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
/* | ||
* Copyright 2023 LINE Corporation | ||
* | ||
* LINE Corporation licenses this file to you under the Apache License, | ||
* version 2.0 (the "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at: | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
* License for the specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
/** | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
* https://openapi-generator.tech Do not edit the class manually. | ||
*/ | ||
package com.linecorp.bot.audience.model; | ||
|
||
|
||
|
||
import com.fasterxml.jackson.annotation.JsonInclude; | ||
import com.fasterxml.jackson.annotation.JsonInclude.Include; | ||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
import java.util.List; | ||
|
||
/** | ||
* Get audience data | ||
* | ||
* @see <a href="https://developers.line.biz/en/reference/messaging-api/#get-audience-group"> | ||
* Documentation</a> | ||
*/ | ||
@JsonInclude(Include.NON_NULL) | ||
@javax.annotation.Generated(value = "com.linecorp.bot.codegen.LineJavaCodegenGenerator") | ||
public record GetSharedAudienceDataResponse( | ||
/** Get audienceGroup */ | ||
@JsonProperty("audienceGroup") AudienceGroup audienceGroup, | ||
/** | ||
* An array of jobs. This array is used to keep track of each attempt to add new user IDs or | ||
* IFAs to an audience for uploading user IDs. Empty array is returned for any other type of | ||
* audience. Max: 50 | ||
*/ | ||
@JsonProperty("jobs") List<AudienceGroupJob> jobs, | ||
/** Get owner */ | ||
@JsonProperty("owner") DetailedOwner owner) { | ||
|
||
public static class Builder { | ||
private AudienceGroup audienceGroup; | ||
private List<AudienceGroupJob> jobs; | ||
private DetailedOwner owner; | ||
|
||
public Builder() {} | ||
|
||
public Builder audienceGroup(AudienceGroup audienceGroup) { | ||
this.audienceGroup = audienceGroup; | ||
return this; | ||
} | ||
|
||
public Builder jobs(List<AudienceGroupJob> jobs) { | ||
this.jobs = jobs; | ||
return this; | ||
} | ||
|
||
public Builder owner(DetailedOwner owner) { | ||
this.owner = owner; | ||
return this; | ||
} | ||
|
||
public GetSharedAudienceDataResponse build() { | ||
return new GetSharedAudienceDataResponse(audienceGroup, jobs, owner); | ||
} | ||
} | ||
} |
Oops, something went wrong.