openapi: 3.0.1 info: title: Equinix API Authentication TransferRequests API description: 'Equinix APIs use the OAuth 2.0 for authentication and authorization. Equinix supports the resource owner password and the client credentials flow. To begin, obtain OAuth 2.0 client credentials from the Equinix Developer Console under "My Apps". Then your client application requests an access token from the Equinix API Authorization endpoint, extracts the access_token from the response, and sends the Bearer token to the API that you want to access' termsOfService: https://www.equinix.com/about/legal/terms contact: name: Equinix API Support url: https://docs.equinix.com/api-support.htm version: '1.2' servers: - url: https://api.equinix.com tags: - description: 'Project Transfer Requests Management ' externalDocs: url: https://metal.equinix.com/developers/docs/accounts/projects/#transferring-a-project name: TransferRequests paths: /transfers/{id}: delete: description: Decline a transfer request. operationId: declineTransferRequest parameters: - description: Transfer request UUID in: path name: id required: true schema: format: uuid type: string responses: '204': description: no content '401': content: application/json: schema: $ref: '#/components/schemas/Error' description: unauthorized '403': content: application/json: schema: $ref: '#/components/schemas/Error' description: forbidden '404': content: application/json: schema: $ref: '#/components/schemas/Error' description: not found summary: Decline a transfer request tags: - TransferRequests get: description: Returns a single transfer request. operationId: findTransferRequestById parameters: - description: Transfer request UUID in: path name: id required: true schema: format: uuid type: string - description: 'Nested attributes to include. Included objects will return their full attributes. Attribute names can be dotted (up to 3 levels) to included deeply nested objects.' explode: false in: query name: include schema: items: type: string type: array style: form responses: '200': content: application/json: schema: $ref: '#/components/schemas/TransferRequest' description: ok '401': content: application/json: schema: $ref: '#/components/schemas/Error' description: unauthorized '403': content: application/json: schema: $ref: '#/components/schemas/Error' description: forbidden '404': content: application/json: schema: $ref: '#/components/schemas/Error' description: not found summary: View a transfer request tags: - TransferRequests put: description: Accept a transfer request. operationId: acceptTransferRequest parameters: - description: Transfer request UUID in: path name: id required: true schema: format: uuid type: string responses: '204': description: no content '401': content: application/json: schema: $ref: '#/components/schemas/Error' description: unauthorized '403': content: application/json: schema: $ref: '#/components/schemas/Error' description: forbidden '404': content: application/json: schema: $ref: '#/components/schemas/Error' description: not found summary: Accept a transfer request tags: - TransferRequests components: schemas: TransferRequest: example: updated_at: 2000-01-23 04:56:07+00:00 target_organization: href: href created_at: 2000-01-23 04:56:07+00:00 project: href: href href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 properties: created_at: format: date-time type: string href: type: string id: format: uuid type: string project: $ref: '#/components/schemas/Href' target_organization: $ref: '#/components/schemas/Href' updated_at: format: date-time type: string type: object Error: description: Error responses are included with 4xx and 5xx HTTP responses from the API service. Either "error" or "errors" will be set. properties: error: description: A description of the error that caused the request to fail. type: string errors: description: A list of errors that contributed to the request failing. items: description: An error message that contributed to the request failing. type: string type: array type: object Href: example: href: href properties: href: type: string required: - href type: object x-eqx-api-linter-skip-rules: - 3 - 38