curl --request GET \
--url https://www.postable.com/api/v1/account \
--header 'Authorization: Bearer <token>'{
"id": 123,
"email": "[email protected]",
"account_type": 123,
"username": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"contact": {
"first_name": "<string>",
"last_name": "<string>",
"uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"prefix": "<string>",
"middle_name": "<string>",
"company": "<string>",
"email": "[email protected]",
"phone": "<string>",
"address": "<string>",
"apt": "<string>",
"city": "<string>",
"state": "<string>",
"zip": "<string>",
"country": "<string>",
"spouse_prefix": "<string>",
"spouse_first_name": "<string>",
"spouse_middle_name": "<string>",
"spouse_last_name": "<string>",
"birth_month": 6,
"birth_day": 16,
"birth_year": 123,
"anniversary_month": 6,
"anniversary_day": 16,
"anniversary_year": 123,
"spouse_birth_month": 6,
"spouse_birth_day": 16,
"spouse_birth_year": 123,
"children": [
{
"first_name": "<string>",
"birth_month": 6,
"birth_day": 16,
"birth_year": 123
}
],
"pets": [
{
"name": "<string>",
"birth_month": 6,
"birth_day": 16,
"birth_year": 123,
"secondary_type": "<string>"
}
],
"notes": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
},
"shipping": {
"name": "<string>",
"company": "<string>",
"address": "<string>",
"apt": "<string>",
"city": "<string>",
"state": "<string>",
"zip": "<string>",
"country": "<string>"
}
}Retrieve your Postable account information
curl --request GET \
--url https://www.postable.com/api/v1/account \
--header 'Authorization: Bearer <token>'{
"id": 123,
"email": "[email protected]",
"account_type": 123,
"username": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"contact": {
"first_name": "<string>",
"last_name": "<string>",
"uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"prefix": "<string>",
"middle_name": "<string>",
"company": "<string>",
"email": "[email protected]",
"phone": "<string>",
"address": "<string>",
"apt": "<string>",
"city": "<string>",
"state": "<string>",
"zip": "<string>",
"country": "<string>",
"spouse_prefix": "<string>",
"spouse_first_name": "<string>",
"spouse_middle_name": "<string>",
"spouse_last_name": "<string>",
"birth_month": 6,
"birth_day": 16,
"birth_year": 123,
"anniversary_month": 6,
"anniversary_day": 16,
"anniversary_year": 123,
"spouse_birth_month": 6,
"spouse_birth_day": 16,
"spouse_birth_year": 123,
"children": [
{
"first_name": "<string>",
"birth_month": 6,
"birth_day": 16,
"birth_year": 123
}
],
"pets": [
{
"name": "<string>",
"birth_month": 6,
"birth_day": 16,
"birth_year": 123,
"secondary_type": "<string>"
}
],
"notes": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
},
"shipping": {
"name": "<string>",
"company": "<string>",
"address": "<string>",
"apt": "<string>",
"city": "<string>",
"state": "<string>",
"zip": "<string>",
"country": "<string>"
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
User account details
Show child attributes
First name of the contact
Last name of the contact
Unique identifier for the contact
Prefix/title (e.g., Mr., Mrs., Dr.)
Middle name of the contact
Company name
Email address
Phone number
Street address
Apartment, suite, or unit number
City
State or province
ZIP or postal code
Country
Spouse's prefix/title
Spouse's first name
Spouse's middle name
Spouse's last name
Birth month
1 <= x <= 12Birth day
1 <= x <= 31Birth year
Anniversary month
1 <= x <= 12Anniversary day
1 <= x <= 31Anniversary year
Spouse's birth month
1 <= x <= 12Spouse's birth day
1 <= x <= 31Spouse's birth year
List of children
Show child attributes
List of pets
Show child attributes
Name of the pet
Birth month of the pet
1 <= x <= 12Birth day of the pet
1 <= x <= 31Birth year of the pet
Type of pet (e.g., Dog, Cat)
Additional notes about the contact
Creation timestamp in ISO-8601 format
Last update timestamp in ISO-8601 format