Class RawOrgBiddingGroupsClient
- java.lang.Object
-
- com.chrt.api.resources.listing.orgbiddinggroups.RawOrgBiddingGroupsClient
-
public class RawOrgBiddingGroupsClient extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description protected ClientOptionsclientOptions
-
Constructor Summary
Constructors Constructor Description RawOrgBiddingGroupsClient(ClientOptions clientOptions)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ChrtApiHttpResponse<java.lang.Boolean>addProviderMemberV1(java.lang.String groupId, java.lang.String providerOrgId)Adds an on-chrt provider org to a bidding group.ChrtApiHttpResponse<java.lang.Boolean>addProviderMemberV1(java.lang.String groupId, java.lang.String providerOrgId, RequestOptions requestOptions)Adds an on-chrt provider org to a bidding group.ChrtApiHttpResponse<OrgBiddingGroup1>byIdV1(java.lang.String groupId)Fetches an org bidding group by id.ChrtApiHttpResponse<OrgBiddingGroup1>byIdV1(java.lang.String groupId, RequestOptions requestOptions)Fetches an org bidding group by id.ChrtApiHttpResponse<java.lang.String>createV1(OrgBiddingGroupClientCreate1 request)Creates an org bidding group owned by the caller's org.ChrtApiHttpResponse<java.lang.String>createV1(OrgBiddingGroupClientCreate1 request, RequestOptions requestOptions)Creates an org bidding group owned by the caller's org.ChrtApiHttpResponse<java.lang.Boolean>deleteV1(java.lang.String groupId)Hard-deletes an org bidding group.ChrtApiHttpResponse<java.lang.Boolean>deleteV1(java.lang.String groupId, RequestOptions requestOptions)Hard-deletes an org bidding group.ChrtApiHttpResponse<OrgBiddingGroupListRes>listByOrgV1()Lists org bidding groups owned by the caller's org with filtering, sorting, and pagination.ChrtApiHttpResponse<OrgBiddingGroupListRes>listByOrgV1(OrgBiddingGroupsListByOrgV1Request request)Lists org bidding groups owned by the caller's org with filtering, sorting, and pagination.ChrtApiHttpResponse<OrgBiddingGroupListRes>listByOrgV1(OrgBiddingGroupsListByOrgV1Request request, RequestOptions requestOptions)Lists org bidding groups owned by the caller's org with filtering, sorting, and pagination.ChrtApiHttpResponse<java.lang.Boolean>removeProviderMemberV1(java.lang.String groupId, java.lang.String providerOrgId)Removes an on-chrt provider org from a bidding group.ChrtApiHttpResponse<java.lang.Boolean>removeProviderMemberV1(java.lang.String groupId, java.lang.String providerOrgId, RequestOptions requestOptions)Removes an on-chrt provider org from a bidding group.ChrtApiHttpResponse<java.lang.Boolean>updateNameV1(java.lang.String groupId, OrgBiddingGroupsUpdateNameV1Request request)Updates the name of an org bidding group.ChrtApiHttpResponse<java.lang.Boolean>updateNameV1(java.lang.String groupId, OrgBiddingGroupsUpdateNameV1Request request, RequestOptions requestOptions)Updates the name of an org bidding group.
-
-
-
Field Detail
-
clientOptions
protected final ClientOptions clientOptions
-
-
Constructor Detail
-
RawOrgBiddingGroupsClient
public RawOrgBiddingGroupsClient(ClientOptions clientOptions)
-
-
Method Detail
-
byIdV1
public ChrtApiHttpResponse<OrgBiddingGroup1> byIdV1(java.lang.String groupId)
Fetches an org bidding group by id. | authz: allowed_org_types=[provider], min_org_role=operator | () -> (OrgBiddingGroup1)
-
byIdV1
public ChrtApiHttpResponse<OrgBiddingGroup1> byIdV1(java.lang.String groupId, RequestOptions requestOptions)
Fetches an org bidding group by id. | authz: allowed_org_types=[provider], min_org_role=operator | () -> (OrgBiddingGroup1)
-
listByOrgV1
public ChrtApiHttpResponse<OrgBiddingGroupListRes> listByOrgV1()
Lists org bidding groups owned by the caller's org with filtering, sorting, and pagination. | authz: allowed_org_types=[provider], min_org_role=operator | () -> (OrgBiddingGroupListRes)
-
listByOrgV1
public ChrtApiHttpResponse<OrgBiddingGroupListRes> listByOrgV1(OrgBiddingGroupsListByOrgV1Request request)
Lists org bidding groups owned by the caller's org with filtering, sorting, and pagination. | authz: allowed_org_types=[provider], min_org_role=operator | () -> (OrgBiddingGroupListRes)
-
listByOrgV1
public ChrtApiHttpResponse<OrgBiddingGroupListRes> listByOrgV1(OrgBiddingGroupsListByOrgV1Request request, RequestOptions requestOptions)
Lists org bidding groups owned by the caller's org with filtering, sorting, and pagination. | authz: allowed_org_types=[provider], min_org_role=operator | () -> (OrgBiddingGroupListRes)
-
createV1
public ChrtApiHttpResponse<java.lang.String> createV1(OrgBiddingGroupClientCreate1 request)
Creates an org bidding group owned by the caller's org. The group starts empty — add members via /add_provider_member. | authz: allowed_org_types=[provider], min_org_role=operator | (OrgBiddingGroupClientCreate1) -> (PydanticObjectId)
-
createV1
public ChrtApiHttpResponse<java.lang.String> createV1(OrgBiddingGroupClientCreate1 request, RequestOptions requestOptions)
Creates an org bidding group owned by the caller's org. The group starts empty — add members via /add_provider_member. | authz: allowed_org_types=[provider], min_org_role=operator | (OrgBiddingGroupClientCreate1) -> (PydanticObjectId)
-
updateNameV1
public ChrtApiHttpResponse<java.lang.Boolean> updateNameV1(java.lang.String groupId, OrgBiddingGroupsUpdateNameV1Request request)
Updates the name of an org bidding group. | authz: allowed_org_types=[provider], min_org_role=operator | () -> (bool)
-
updateNameV1
public ChrtApiHttpResponse<java.lang.Boolean> updateNameV1(java.lang.String groupId, OrgBiddingGroupsUpdateNameV1Request request, RequestOptions requestOptions)
Updates the name of an org bidding group. | authz: allowed_org_types=[provider], min_org_role=operator | () -> (bool)
-
addProviderMemberV1
public ChrtApiHttpResponse<java.lang.Boolean> addProviderMemberV1(java.lang.String groupId, java.lang.String providerOrgId)
Adds an on-chrt provider org to a bidding group. The provider must have a live provider -> provider connection to the caller's org. Duplicate adds are idempotent ($addToSet). | authz: allowed_org_types=[provider], min_org_role=operator | () -> (bool)
-
addProviderMemberV1
public ChrtApiHttpResponse<java.lang.Boolean> addProviderMemberV1(java.lang.String groupId, java.lang.String providerOrgId, RequestOptions requestOptions)
Adds an on-chrt provider org to a bidding group. The provider must have a live provider -> provider connection to the caller's org. Duplicate adds are idempotent ($addToSet). | authz: allowed_org_types=[provider], min_org_role=operator | () -> (bool)
-
removeProviderMemberV1
public ChrtApiHttpResponse<java.lang.Boolean> removeProviderMemberV1(java.lang.String groupId, java.lang.String providerOrgId)
Removes an on-chrt provider org from a bidding group. No-op if not a member. Live Listings retain their snapshotted members. | authz: allowed_org_types=[provider], min_org_role=operator | () -> (bool)
-
removeProviderMemberV1
public ChrtApiHttpResponse<java.lang.Boolean> removeProviderMemberV1(java.lang.String groupId, java.lang.String providerOrgId, RequestOptions requestOptions)
Removes an on-chrt provider org from a bidding group. No-op if not a member. Live Listings retain their snapshotted members. | authz: allowed_org_types=[provider], min_org_role=operator | () -> (bool)
-
deleteV1
public ChrtApiHttpResponse<java.lang.Boolean> deleteV1(java.lang.String groupId)
Hard-deletes an org bidding group. Live Listings that used this group as a source are unaffected — they hold their own snapshottedparticipant_provider_org_ids. | authz: allowed_org_types=[provider], min_org_role=operator | () -> (bool)
-
deleteV1
public ChrtApiHttpResponse<java.lang.Boolean> deleteV1(java.lang.String groupId, RequestOptions requestOptions)
Hard-deletes an org bidding group. Live Listings that used this group as a source are unaffected — they hold their own snapshottedparticipant_provider_org_ids. | authz: allowed_org_types=[provider], min_org_role=operator | () -> (bool)
-
-