AI-generated Key Takeaways
-
This API allows partners to create subscriptions for their customers, associating them with the end user authenticated through OAuth.
-
The API uses a POST request to
https://paymentsresellersubscription.googleapis.com/v1/{parent=partners/*}/subscriptions
with path and query parameters for specifying the partner and subscription details. -
The request body should contain a
Subscription
object providing the subscription information, and a successful response will return the newly createdSubscription
object.
Used by partners to create a subscription for their customers. The created subscription is associated with the end user inferred from the end user credentials. This API must be authorized by the end user using OAuth.
HTTP request
POST https://paymentsresellersubscription.googleapis.com/v1/{parent=partners/*}/subscriptions
The URL uses gRPC Transcoding syntax.
Path parameters
Parameters | |
---|---|
parent |
Required. The parent resource name, which is the identifier of the partner. It will have the format of "partners/{partner_id}". |
Query parameters
Parameters | |
---|---|
subscriptionId |
Required. Identifies the subscription resource on the Partner side. The value is restricted to 63 ASCII characters at the maximum. If a subscription was previously created with the same subscriptionId, we will directly return that one. |
Request body
The request body contains an instance of Subscription
.
Response body
If successful, the response body contains a newly created instance of Subscription
.