Interface OrganizationService.WithRawResponse
-
- All Implemented Interfaces:
public interface OrganizationService.WithRawResponseA view of OrganizationService that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
members
abstract MemberService.WithRawResponse members()
-
retrieve
@MustBeClosed() HttpResponseFor<Organization> retrieve(OrganizationRetrieveParams params)
Returns a raw HTTP response for
get /v1/organization/{organization_id}, but is otherwise the same as OrganizationService.retrieve.
-
retrieve
@MustBeClosed() abstract HttpResponseFor<Organization> retrieve(OrganizationRetrieveParams params, RequestOptions requestOptions)
-
update
@MustBeClosed() HttpResponseFor<Organization> update(OrganizationUpdateParams params)
Returns a raw HTTP response for
patch /v1/organization/{organization_id}, but is otherwise the same as OrganizationService.update.
-
update
@MustBeClosed() abstract HttpResponseFor<Organization> update(OrganizationUpdateParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<OrganizationListPage> list()
Returns a raw HTTP response for
get /v1/organization, but is otherwise the same as OrganizationService.list.
-
list
@MustBeClosed() abstract HttpResponseFor<OrganizationListPage> list(OrganizationListParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<OrganizationListPage> list(OrganizationListParams params)
-
list
@MustBeClosed() HttpResponseFor<OrganizationListPage> list(RequestOptions requestOptions)
-
delete
@MustBeClosed() HttpResponseFor<Organization> delete(OrganizationDeleteParams params)
Returns a raw HTTP response for
delete /v1/organization/{organization_id}, but is otherwise the same as OrganizationService.delete.
-
delete
@MustBeClosed() abstract HttpResponseFor<Organization> delete(OrganizationDeleteParams params, RequestOptions requestOptions)
-
-
-
-