๐Ÿ”ŽFind a Single Address Document

Find an existing address document record by address_document_id.

Find an existing Address Document for a Customer.

GET {{baseUrl}}/address-documents/:address_document_id

Search for an Address Document record using the search parameter address_document_id.

Path Parameters

NameTypeDescription

address_document_id*

String

The UUID for an Address Document that gets generated and returned in the POST Create Address Document response.

```json
{
    "data": {
        "id": "1a2b996a-3622-4b7a-aa4b-c6509a74b3af",
        "address_line_1": "6 Eton Road",
        "address_line_2": "22 Eton Park",
        "suburb": "Sandhurst",
        "city": "Johannesburg",
        "province": null,
        "postal_code": "2196"
    }
}
```

Last updated