Creating an Address entity provides the necessary information to identify and locate a physical address. It may be associated with an Identity entity or Business entity to provide a more complete picture of the parties involved.
Create an Address
Address was created successfully
{- "line1": "123 Example St",
- "line2": "# 61157",
- "city": "Minneapolis",
- "state": "MN",
- "postal_code": "55555",
- "country": "USA"
}
{- "id": 1,
- "type": "address",
- "data": {
- "id": "addr_123xyz",
- "line1": "123 Example St",
- "line2": "Suite 101",
- "city": "Minneapolis",
- "state": "MN",
- "postal_code": "55555",
- "country": "USA",
- "created_at": "2021-01-01T12:00:00Z",
- "updated_at": "2021-01-01T12:00:00Z"
}, - "page_info": "string"
}
List addresses for your platform. This endpoint supports pagination.
Successfully list addresses
{- "id": 1,
- "type": "array",
- "data": [
- {
- "id": "addr_123xyz",
- "line1": "123 Example St",
- "line2": "Suite 101",
- "city": "Minneapolis",
- "state": "MN",
- "postal_code": "55555",
- "country": "USA",
- "created_at": "2021-01-01T12:00:00Z",
- "updated_at": "2021-01-01T12:00:00Z"
}
], - "page_info": {
- "end_cursor": "WyIyMDIyLTAyLTA4IDE5OjUyOjM3LjEwNDE3MzAwMCIsIjY4MDliYTU5LTYxYjctNDg3MS05YWFiLWE2Y2MyNmY3M2M1ZCJd",
- "has_next": false,
- "has_previous": false,
- "start_cursor": "WyIyMDIyLTAyLTA4IDIwOjAxOjU4LjEyMDIzMjAwMCIsIjU5ZTFjNGI1LWFlOWQtNDIyZC04MTVkLWNjNzQ5NzdlYmFjYSJd"
}
}
Update information about an Address
Address updated
{- "line1": "123 Example St",
- "line2": "# 61157",
- "city": "Minneapolis",
- "state": "MN",
- "postal_code": "55555",
- "country": "USA"
}
{- "id": 1,
- "type": "address",
- "data": {
- "id": "addr_123xyz",
- "line1": "123 Example St",
- "line2": "Suite 101",
- "city": "Minneapolis",
- "state": "MN",
- "postal_code": "55555",
- "country": "USA",
- "created_at": "2021-01-01T12:00:00Z",
- "updated_at": "2021-01-01T12:00:00Z"
}, - "page_info": "string"
}
{- "id": 1,
- "type": "address",
- "data": {
- "id": "addr_123xyz",
- "line1": "123 Example St",
- "line2": "Suite 101",
- "city": "Minneapolis",
- "state": "MN",
- "postal_code": "55555",
- "country": "USA",
- "created_at": "2021-01-01T12:00:00Z",
- "updated_at": "2021-01-01T12:00:00Z"
}, - "page_info": "string"
}