Docs: Update REPP domain transfer

This commit is contained in:
Karl Erik Õunapuu 2020-10-26 13:40:11 +02:00
parent 4e895d9124
commit 09c62fd7eb
No known key found for this signature in database
GPG key ID: C9DD647298A34764

View file

@ -1,28 +1,28 @@
# Domain transfers # Domain transfers
## POST /repp/v1/domain_transfers ## POST /repp/v1/domains/transfer
Transfers domains. Transfers domains.
#### Request #### Request
``` ```
POST /repp/v1/domain_transfers POST /repp/v1/domains/transfer
Accept: application/json Accept: application/json
Content-Type: application/json Content-Type: application/json
Authorization: Basic dGVzdDp0ZXN0dGVzdA== Authorization: Basic dGVzdDp0ZXN0dGVzdA==
{ {
"data":{ "data": {
"domainTransfers":[ "domain_transfers": [
{ {
"domainName":"example.com", "domain_name":"example.com",
"transferCode":"63e7" "transferCode":"63e7"
}, },
{ {
"domainName":"example.org", "domain_name":"example.org",
"transferCode":"15f9" "transferCode":"15f9"
} }
] ]
} }
} }
``` ```
@ -31,14 +31,21 @@ Authorization: Basic dGVzdDp0ZXN0dGVzdA==
HTTP/1.1 200 HTTP/1.1 200
Content-Type: application/json Content-Type: application/json
{ {
"data":[ "code": 1000,
"message": "Command completed successfully",
"data": {
"success": [
{ {
"type":"domain_transfer" "type": "domain_transfer",
"domain_name": "example.com"
}, },
{ {
"type":"domain_transfer" "type": "domain_transfer",
"domain_name": "example.org"
} }
] ],
"failed": []
}
} }
``` ```
@ -48,13 +55,32 @@ Content-Type: application/json
HTTP/1.1 400 HTTP/1.1 400
Content-Type: application/json Content-Type: application/json
{ {
"errors":[ "code": 1000,
"message": "Command completed successfully",
"data": {
"success": [],
"failed": [
{ {
"title":"example.com transfer code is wrong" "type": "domain_transfer",
"domain_name": "example.com",
"errors": [
{
"code": "2202",
"msg": "Invalid authorization information"
}
]
}, },
{ {
"title":"example.org does not exist" "type": "domain_transfer",
"domain_name": "example.org",
"errors": [
{
"code": "2304",
"msg": "Object status prohibits operation"
}
]
} }
] ]
}
} }
``` ```