Create Addresses
Description
Creates an Address that can be assigned to an Identity.
Request
HTTP Method: POST
URI Path: /v3/addresses
Request Body Object Attributes:
Name |
Type |
Required |
Description |
---|---|---|---|
city_name |
|
Yes |
City name of the address. |
postal_code |
|
Yes |
Postal code of the address. |
address |
|
Yes |
Full address. |
description |
|
Optional |
The description of the address. |
Request Body Object Relationships:
Title |
Type |
Description |
---|---|---|
countries |
Specifies the country for the address. |
|
identities |
Specifies the identity for the address. |
Examples
POST /v3/addresses HTTP/1.1
Host: api.didww.com
Content-Type: application/vnd.api+json
Accept: application/vnd.api+json
Api-Key: [API token]
{
"data": {
"type": "addresses",
"attributes": {
"city_name": "string",
"postal_code": "string",
"address": "string",
"description": "string"
},
"relationships": {
"identity": {
"data": {
"id": "6c832a1d-b19d-471b-b416-9b5bf2b6ef9d",
"type": "identities"
}
},
"country": {
"data": {
"id": "38003e8b-cccc-41d4-b1a6-d1e6fddf2c0f",
"type": "countries"
}
}
}
}
}
curl -i -X POST https://api.didww.com/v3/addresses -H "Accept: application/vnd.api+json" -H "Api-Key: [API token]" -H "Content-Type: application/vnd.api+json" --data-raw '{"data": {"attributes": {"address": "string", "city_name": "string", "description": "string", "postal_code": "string"}, "relationships": {"country": {"data": {"id": "38003e8b-cccc-41d4-b1a6-d1e6fddf2c0f", "type": "countries"}}, "identity": {"data": {"id": "6c832a1d-b19d-471b-b416-9b5bf2b6ef9d", "type": "identities"}}}, "type": "addresses"}}'
HTTP/1.1 200 OK
Content-Type: application/vnd.api+json
{
"data": {
"id": "49f09b7f-c5bf-4c90-bac1-a8b335d2c3f0",
"type": "addresses",
"attributes": {
"city_name": "string",
"postal_code": "string",
"address": "string",
"description": "string",
"created_at": "2020-09-16T10:23:07.846Z"
},
"relationships": {
"identity": {
"links": {
"self": "https://sandbox-api.didww.com/v3/addresses/49f09b7f-c5bf-4c90-bac1-a8b335d2c3f0/relationships/identity",
"related": "https://sandbox-api.didww.com/v3/addresses/49f09b7f-c5bf-4c90-bac1-a8b335d2c3f0/identity"
}
},
"country": {
"links": {
"self": "https://sandbox-api.didww.com/v3/addresses/49f09b7f-c5bf-4c90-bac1-a8b335d2c3f0/relationships/country",
"related": "https://sandbox-api.didww.com/v3/addresses/49f09b7f-c5bf-4c90-bac1-a8b335d2c3f0/country"
}
},
"proofs": {
"links": {
"self": "https://sandbox-api.didww.com/v3/addresses/49f09b7f-c5bf-4c90-bac1-a8b335d2c3f0/relationships/proofs",
"related": "https://sandbox-api.didww.com/v3/addresses/49f09b7f-c5bf-4c90-bac1-a8b335d2c3f0/proofs"
}
},
"area": {
"links": {
"self": "https://sandbox-api.didww.com/v3/addresses/49f09b7f-c5bf-4c90-bac1-a8b335d2c3f0/relationships/area",
"related": "https://sandbox-api.didww.com/v3/addresses/49f09b7f-c5bf-4c90-bac1-a8b335d2c3f0/area"
}
},
"city": {
"links": {
"self": "https://sandbox-api.didww.com/v3/addresses/49f09b7f-c5bf-4c90-bac1-a8b335d2c3f0/relationships/city",
"related": "https://sandbox-api.didww.com/v3/addresses/49f09b7f-c5bf-4c90-bac1-a8b335d2c3f0/city"
}
}
}
},
"meta": {
"api_version": "2021-12-15"
}
}
POST /v3/addresses HTTP/1.1
Host: api.didww.com
Content-Type: application/vnd.api+json
Accept: application/vnd.api+json
Api-Key: [API token]
{
"data": {
"type": "addresses",
"attributes": {
"city_name": "Siauliai",
"postal_code": "LT80001",
"address": "Biciunu 14",
"description": "is kiemo puses"
},
"relationships": {
"identity": {
"data": {
"id": "6c832a1d-b19d-471b-b416-9b5bf2b6ef9d",
"type": "identities"
}
},
"country": {
"data": {
"id": "country_id_string",
"type": "countries"
}
}
}
}
}
curl -i -X POST https://api.didww.com/v3/addresses -H "Accept: application/vnd.api+json" -H "Api-Key: [API token]" -H "Content-Type: application/vnd.api+json" --data-raw '{"data": {"attributes": {"address": "Biciunu 14", "city_name": "Siauliai", "description": "is kiemo puses", "postal_code": "LT80001"}, "relationships": {"country": {"data": {"id": "country_id_string", "type": "countries"}}, "identity": {"data": {"id": "6c832a1d-b19d-471b-b416-9b5bf2b6ef9d", "type": "identities"}}}, "type": "addresses"}}'
HTTP/1.1 422 Unprocessable Entity
Content-Type: application/vnd.api+json
{"errors": [{
"title": "is invalid",
"detail": "country - is invalid",
"code": "100",
"source": {"pointer": "/data/relationships/country"},
"status": "422"
}]}
Other Responses
Code |
Success |
Description |
---|---|---|
404 |
No |
|
401 |
No |