curl --request GET \
--url https://panel.sendcloud.sc/api/v2/user/addresses/sender \
--header 'Authorization: Basic <encoded-value>'{
"sender_addresses": [
{
"id": 2,
"company_name": "French Company",
"contact_name": "Marie Doe",
"email": "info@sendcloud.fr",
"telephone": "",
"street": "Rue Villiers de l'Isle Adam",
"house_number": "33",
"postal_box": "",
"postal_code": "35000",
"city": "Rennes",
"country": "FR",
"country_state": null,
"vat_number": "NL123456789B01",
"eori_number": "NL123456789",
"label": "Sample label FR",
"brand_id": 1,
"signature_full_name": "",
"signature_initials": ""
},
{
"id": 1,
"company_name": "Sendcloud",
"contact_name": "John Doe",
"email": "johndoe@sendcloud.com",
"telephone": "+31626262626",
"street": "Bogert",
"house_number": "10",
"postal_box": "",
"postal_code": "5611 EM",
"city": "Eindhoven",
"country": "NL",
"country_state": null,
"vat_number": "NL123456789B01",
"eori_number": "NL123456789",
"label": "Sample label NL",
"brand_id": 2,
"signature_full_name": "John Doe",
"signature_initials": "JD"
}
]
}Returns a list of all the sender addresses which have been saved to your account.
curl --request GET \
--url https://panel.sendcloud.sc/api/v2/user/addresses/sender \
--header 'Authorization: Basic <encoded-value>'{
"sender_addresses": [
{
"id": 2,
"company_name": "French Company",
"contact_name": "Marie Doe",
"email": "info@sendcloud.fr",
"telephone": "",
"street": "Rue Villiers de l'Isle Adam",
"house_number": "33",
"postal_box": "",
"postal_code": "35000",
"city": "Rennes",
"country": "FR",
"country_state": null,
"vat_number": "NL123456789B01",
"eori_number": "NL123456789",
"label": "Sample label FR",
"brand_id": 1,
"signature_full_name": "",
"signature_initials": ""
},
{
"id": 1,
"company_name": "Sendcloud",
"contact_name": "John Doe",
"email": "johndoe@sendcloud.com",
"telephone": "+31626262626",
"street": "Bogert",
"house_number": "10",
"postal_box": "",
"postal_code": "5611 EM",
"city": "Eindhoven",
"country": "NL",
"country_state": null,
"vat_number": "NL123456789B01",
"eori_number": "NL123456789",
"label": "Sample label NL",
"brand_id": 2,
"signature_full_name": "John Doe",
"signature_initials": "JD"
}
]
}id of each address, which you can include as a parameter when creating parcels or looking up shipping methods via the API.Basic Authentication using API key and secrets is currently the main authentication mechanism.
List of sender addresses.
A list of the users configured sender addresses.
Show child attributes