Upload new contact data into a list (RAW upload)
curl --request POST \
--url https://api.tryfuse.ai/api/v1/business/lists/{listId}/contacts \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"contacts": [
{
"firstName": "<string>",
"lastName": "<string>",
"email": "jsmith@example.com",
"phone": "<string>",
"linkedinUrl": "<string>",
"jobTitle": "<string>",
"companyName": "<string>",
"companyDomain": "<string>"
}
]
}
'import requests
url = "https://api.tryfuse.ai/api/v1/business/lists/{listId}/contacts"
payload = { "contacts": [
{
"firstName": "<string>",
"lastName": "<string>",
"email": "jsmith@example.com",
"phone": "<string>",
"linkedinUrl": "<string>",
"jobTitle": "<string>",
"companyName": "<string>",
"companyDomain": "<string>"
}
] }
headers = {
"Authorization": "Basic <encoded-value>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Basic <encoded-value>', 'Content-Type': 'application/json'},
body: JSON.stringify({
contacts: [
{
firstName: '<string>',
lastName: '<string>',
email: 'jsmith@example.com',
phone: '<string>',
linkedinUrl: '<string>',
jobTitle: '<string>',
companyName: '<string>',
companyDomain: '<string>'
}
]
})
};
fetch('https://api.tryfuse.ai/api/v1/business/lists/{listId}/contacts', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"addedCount": 2,
"contactIds": [
"68a1f4109c41d20014b3ea01",
"68a1f4109c41d20014b3ea02"
]
}{
"error": {
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}Lists
Upload new contact data into a list (RAW upload)
Requires one of the following token scopes: lists.
POST
/
business
/
lists
/
{listId}
/
contacts
Upload new contact data into a list (RAW upload)
curl --request POST \
--url https://api.tryfuse.ai/api/v1/business/lists/{listId}/contacts \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"contacts": [
{
"firstName": "<string>",
"lastName": "<string>",
"email": "jsmith@example.com",
"phone": "<string>",
"linkedinUrl": "<string>",
"jobTitle": "<string>",
"companyName": "<string>",
"companyDomain": "<string>"
}
]
}
'import requests
url = "https://api.tryfuse.ai/api/v1/business/lists/{listId}/contacts"
payload = { "contacts": [
{
"firstName": "<string>",
"lastName": "<string>",
"email": "jsmith@example.com",
"phone": "<string>",
"linkedinUrl": "<string>",
"jobTitle": "<string>",
"companyName": "<string>",
"companyDomain": "<string>"
}
] }
headers = {
"Authorization": "Basic <encoded-value>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Basic <encoded-value>', 'Content-Type': 'application/json'},
body: JSON.stringify({
contacts: [
{
firstName: '<string>',
lastName: '<string>',
email: 'jsmith@example.com',
phone: '<string>',
linkedinUrl: '<string>',
jobTitle: '<string>',
companyName: '<string>',
companyDomain: '<string>'
}
]
})
};
fetch('https://api.tryfuse.ai/api/v1/business/lists/{listId}/contacts', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"addedCount": 2,
"contactIds": [
"68a1f4109c41d20014b3ea01",
"68a1f4109c41d20014b3ea02"
]
}{
"error": {
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"param": "<string>",
"doc_url": "<string>",
"request_id": "<string>"
}
}Authorizations
Your API token (af_…) as the Basic-auth username, with an empty password.
Path Parameters
Body
application/json
Required array length:
1 - 500 elementsShow child attributes
Show child attributes
Response
Success
The response is of type object.
⌘I