curl --request PATCH \
--url https://billing.b5test.eu/api/v1/partners/accounts/{customer_account_uid} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"ends_at": "2030-01-23T15:55:58.000Z"
}
'{
"customer_account_uid": "aabee51b-0be2-4a0c-aa39-5bbcbb903d1b",
"account_type": "I",
"activation_token": "PNS-DEFG1234",
"domain": "b5test.com",
"status": "provisioned",
"deployed_members": 1,
"created_at": "2023-01-23T15:55:58.000Z",
"updated_at": "2023-01-23T15:58:22.000Z",
"ends_at": "2030-01-23T15:55:58.000Z"
}Update billing account end date
Updates the ends_at attribute of an account based on an UID.
curl --request PATCH \
--url https://billing.b5test.eu/api/v1/partners/accounts/{customer_account_uid} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"ends_at": "2030-01-23T15:55:58.000Z"
}
'{
"customer_account_uid": "aabee51b-0be2-4a0c-aa39-5bbcbb903d1b",
"account_type": "I",
"activation_token": "PNS-DEFG1234",
"domain": "b5test.com",
"status": "provisioned",
"deployed_members": 1,
"created_at": "2023-01-23T15:55:58.000Z",
"updated_at": "2023-01-23T15:58:22.000Z",
"ends_at": "2030-01-23T15:55:58.000Z"
}Documentation Index
Fetch the complete documentation index at: https://www.1password.dev/llms.txt
Use this file to discover all available pages before exploring further.
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Unique ID of partner_account to update.
Body
Request to update the ends_at attribute of a partner account.
Specifies when the 1Password account will be frozen, formatted in RFC-3339.
Response
An Account object is returned upon successful update of a partner account.
The unique identifier for the end user's account. It can be up to 80 chars long and consist of alphanumeric characters and hyphens.
The current type of the 1Password account - 'I' for Individual, or 'F' for family.
The activation token is a coupon code to link a new or existing 1Password account to a partnership promotion. For example, it can be used for 1Password account creation at https://start.{{1password_domain}}/partnership/redeem?t={{account_type}}&c={{activation_token}} during end-user signup.
The 1Password domain for which the account was provisioned for. For testing domains, it can be one of 'b5test.com', 'b5test.ca', or 'b5test.eu'. For production, it can be one of '1password.com', '1password.ca', or '1password.eu'.
The provisioning status of the partner account. It can be either 'entitled' for accounts that have been initialized but have not completed 1Password signup, or 'provisioned' for accounts that have completed the 1Password signup process.
The number of provisioned users for the 1Password account.
The timestamp of when the partnership account was created, formatted in RFC-3339.
The timestamp of when the partner account was last updated, formatted in RFC-3339. This field will be updated during account status changes.
The timestamp of when the partner account will be frozen, formatted in RFC-3339.
Was this page helpful?