Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions DEPRECATIONS.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,23 +22,23 @@ The endpoint `GET /:account/registrar/domains/:domain/premium_price` was used to

### 2022-05-17 - Certificate contact_id field

The `contact_id` field in Certificate schema has been deprecated. It is no longer a required field for certificate operations and its value is ignored on input. The field is still emitted on responses for backwards compatibility.
The `contact_id` field in Certificate schema has been deprecated. It is no longer a required field for certificate operations and its value is ignored on input.

**Removal Date:** N/A
**Removal Date:** 2026-04-16

**Replacement:** None. This field is no longer required.

**Client Status:**

- Ruby: Flagged ([#276](https://github.com/dnsimple/dnsimple-ruby/pull/276))
- Go: Flagged
- Elixir: Not started
- Node.js: Not started
- Java: Complete
- C#: Flagged
- PHP: Flagged
- Python: Flagged
- Rust: Flagged (tracked in [dnsimple-rust#105](https://github.com/dnsimple/dnsimple-rust/issues/105))
- Ruby: [Complete](https://github.com/dnsimple/dnsimple-ruby/pull/465)
- Go: [Complete](https://github.com/dnsimple/dnsimple-go/pull/256)
- Elixir: [Complete](https://github.com/dnsimple/dnsimple-elixir/pull/328)
- Node.js: [Complete](https://github.com/dnsimple/dnsimple-node/pull/285)
- Java: [Complete](https://github.com/dnsimple/dnsimple-java/pull/146)
- C#: [Complete](https://github.com/dnsimple/dnsimple-csharp/pull/236)
- PHP: [Complete](https://github.com/dnsimple/dnsimple-php/pull/164)
- Python: [Complete](https://github.com/dnsimple/dnsimple-python/pull/501)
- Rust: [Complete](https://github.com/dnsimple/dnsimple-rust/pull/108)

### 2021-01-25 - Email forwarding `from` field

Expand Down
4 changes: 0 additions & 4 deletions content/use-cases/issue-certificates.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,14 +49,10 @@ When your customer registers a domain through your service, or delegates it for

[lib/app/dnsimple.rb](https://github.com/dnsimple/dnsimple-api-examples/blob/main/ruby/use_cases/issue_certificates/lib/app/dnsimple.rb#L16)

> [!WARNING] Deprecated since 01 June 2022
> The `contact_id` field in Certificate schema has been deprecated. It is no longer a required field for certificate operations.

```ruby
post '/issue_certificate' do
certificate_order = App::DnsimpleAdapter.purchase_letsencrypt_certificate(
parsed_request_body['domain'],
App.config.dnsimple['contact_id'],
name: parsed_request_body['name'],
alternate_names: parsed_request_body['san']&.split(','),
auto_renew: parsed_request_body.fetch('auto_renew', true)
Expand Down
3 changes: 0 additions & 3 deletions content/v2/certificates.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@ excerpt: This page documents the DNSimple certificates API v2.

## Certificate attributes {#certificate-attributes}

> [!WARNING] Deprecated since 01 June 2022
> The `contact_id` field in Certificate schema has been deprecated. It is no longer a required field for certificate operations.

Please refer to the definition of the `Certificate` data type in [our OpenAPI documentation](/v2/openapi.yml).


Expand Down
4 changes: 0 additions & 4 deletions content/v2/openapi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3688,7 +3688,6 @@ components:
required:
- id
- domain_id
- contact_id
- name
- common_name
- years
Expand All @@ -3706,9 +3705,6 @@ components:
type: integer
domain_id:
type: integer
contact_id:
type: integer
deprecated: true
name:
type: string
common_name:
Expand Down