curl --request GET \
--url https://sandbox.intermezzo.ai/worksites/{worksite_id}/address \
--header 'Authorization: Bearer <token>'[
{
"id": "<string>",
"isCorrespondence": true,
"address": "<string>",
"components": {
"formatted_address": "<string>",
"street_number": "<string>",
"road": "<string>",
"city": "<string>",
"state": "<string>",
"country": "<string>",
"postal_code": "<string>",
"postal_code_suffix": "<string>",
"latitude": 123,
"longitude": 123
},
"content": {
"normalizedAddress": "<string>",
"countryCode": "DE",
"addressType": "HAUSANSCHRIFT"
}
}
]curl --request GET \
--url https://sandbox.intermezzo.ai/worksites/{worksite_id}/address \
--header 'Authorization: Bearer <token>'[
{
"id": "<string>",
"isCorrespondence": true,
"address": "<string>",
"components": {
"formatted_address": "<string>",
"street_number": "<string>",
"road": "<string>",
"city": "<string>",
"state": "<string>",
"country": "<string>",
"postal_code": "<string>",
"postal_code_suffix": "<string>",
"latitude": 123,
"longitude": 123
},
"content": {
"normalizedAddress": "<string>",
"countryCode": "DE",
"addressType": "HAUSANSCHRIFT"
}
}
]Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Was this page helpful?