swagger: '2.0' info: title: 'Abuse Actions Expiry Auctions: Registrar Partners API' version: 2.0.0 description: GoDaddy Abuse API Terms of Use:
GoDaddy’s Abuse API is provided to simplify and standardize the abuse reporting experience. To help us streamline the review of abuse reports, you acknowledge and agree that your use of GoDaddy’s Abuse API is subject to the following quality metrics and terms of use.
GoDaddy may, in its sole and absolute discretion, change or modify these terms, and such changes or modifications shall be effective immediately upon notice to you. Your use of GoDaddy’s Abuse API after such changes or modifications shall constitute your acceptance of these terms as last revised. If you do not agree to be bound by these terms as last revised, do not use (or continue to use) our Abuse API.
As an Abuse API user, you must only submit abuse reports via the API portal and cease all email submissions, including but not limited, to phishing@godaddy.com, netabuse@godaddy.com, malware@godaddy.com, or spam@godaddy.com, etc. Any additional or duplicate submission outside of the API portal will be deprioritized for review. Submissions related to trademark, copyright or content issues may still be sent to trademarkclaims@godaddy.com, coyprightclaims@godaddy.com, and contentcomplaints@godaddy.com, respectively. Our [Front of Site](https://supportcenter.godaddy.com/AbuseReport) also describes other scenarios not covered by the API.
When you submit abuse reports via GoDaddy’s Abuse API, you must ensure that you accurately categorize the abuse type of each report to match our definitions in the API documentations provided to you. Any submission that fails to match our definitions or is miscategorized will be marked as a false positive. Examples include, but are not limited to, submissions of trademark complaints marked as phishing or malware, or submissions of copyright complaints marked as phishing or malware, etc.
If, at any time, the false positive rate of submissions exceeds 40% of your total submissions, as determined by GoDaddy, GoDaddy may in its sole discretion deprioritize any subsequent reports submitted by you and/or your organization.
You acknowledge and agree that submitting every URL for a single domain is not necessary and will not expedite the review process. If your submissions exceed five (5) URLs for a single domain, your report will be marked as a duplicate submission taking into account that the final outcome of such submissions would yield the same result as the original report. GoDaddy may in its sole discretion deprioritize reports submitted by you and/or your organization in the event more than 20% of your submissions are classified as duplicate submissions.
You further acknowledge and agree that our Customer Support lines are not intended to address abuse reporting matters or your use of GoDaddy’s Abuse API. Contacting Customer Support will not expedite the review process and may result in abuse reports being deprioritized, to be determined in our sole discretion.
Should you have any questions about GoDaddy’s Abuse API or any of the terms and conditions set forth above, please contact abuseapisupport@godaddy.com.
host: api.ote-godaddy.com tags: - name: 'Expiry Auctions: Registrar Partners' description: API for auction-related actions exclusive to whitelisted partners. paths: /v1/customers/{customerId}/auctions/listings: get: tags: - 'Expiry Auctions: Registrar Partners' consumes: - application/json produces: - application/json parameters: - name: customerId required: true in: path description: An identifier for a customer. type: string - name: domains required: false in: query description: Only include results for the specified domains. Use comma-separated string to include more than one domain. For example, `one.com,two.info,three.biz` type: string - name: listingStatus required: false in: query description: Only include results for the specified listing status. type: string enum: - FULFILLED - name: transferBefore required: false in: query description: Domain transfer time before this time, ISO 8601, in UTC. Defaults to last day of the previous month if not provided. Applicable only for listings in `FULFILLED` listingStatus. type: string format: iso-datetime - name: transferAfter required: false in: query description: Domain transfer time after this time, ISO 8601, in UTC. Defaults to first day of the previous month if not provided. Applicable only for listings in `FULFILLED` listingStatus. type: string format: iso-datetime - name: limit required: false in: query description: Maximum number of items to return. type: integer format: integer-positive - name: offset required: false in: query description: Number of results to skip for pagination. type: integer format: integer-positive responses: '200': description: Request was successful schema: $ref: '#/definitions/Listings' '400': description: Request was malformed schema: $ref: '#/definitions/Error' '401': description: Authentication info not sent or invalid schema: $ref: '#/definitions/Error' '403': description: Authenticated user is not allowed access schema: $ref: '#/definitions/Error' '422': description: Required parameters must be specified in correct format schema: $ref: '#/definitions/Error' '429': description: Too many requests received within interval schema: $ref: '#/definitions/ErrorLimit' '500': description: Internal server error schema: $ref: '#/definitions/Error' operationId: getListings summary: Get listings from GoDaddy Auctions /v1/aftermarket/listings: delete: tags: - 'Expiry Auctions: Registrar Partners' consumes: - application/json - application/xml - text/xml produces: - application/json - application/javascript - application/xml - text/javascript - text/xml parameters: - description: A comma separated list of domain names in: query items: type: string name: domains required: true type: array responses: '200': description: Request was successful schema: $ref: '#/definitions/AftermarketListingAction' '400': description: Request was malformed schema: $ref: '#/definitions/Error' '401': description: Authentication info not sent or invalid schema: $ref: '#/definitions/Error' '403': description: Authenticated user is not allowed access schema: $ref: '#/definitions/Error' '422': description: "\tRequired parameters must be specified in correct format" schema: $ref: '#/definitions/Error' '429': description: Too many requests received within interval schema: $ref: '#/definitions/ErrorLimit' '500': description: Internal server error schema: $ref: '#/definitions/Error' operationId: deleteListings summary: Remove listings from GoDaddy Auction /v1/aftermarket/listings/expiry: post: tags: - 'Expiry Auctions: Registrar Partners' consumes: - application/json - application/xml - text/xml produces: - application/json - application/javascript - application/xml - text/javascript - text/xml parameters: - description: An array of expiry listings to be loaded in: body name: expiryListings required: true schema: items: $ref: '#/definitions/AftermarketListingExpiryCreate' type: array responses: '200': description: Request was successful schema: $ref: '#/definitions/AftermarketListingAction' '400': description: Request was malformed schema: $ref: '#/definitions/Error' '401': description: Authentication info not sent or invalid schema: $ref: '#/definitions/Error' '403': description: Authenticated user is not allowed access schema: $ref: '#/definitions/Error' '422': description: Required parameters must be specified in correct format