ASAPP APIs
- Overview
- Conversations
- Messages
- Generative Agent
- AutoSummary
- AutoTranscribe
- AutoCompose
- Knowledge Base
- Configuration
- File Exporter
- Metadata
- Agent Metadata
- Conversation Metadata
- Customer Metadata
- Health Check
Add multiple customer metadata
Add multiple customer metadata items; submit items in a batch in one request
curl --request POST \
--url https://api.sandbox.asapp.com/metadata-ingestion/v1/many-customer-metadata \
--header 'Content-Type: application/json' \
--header 'asapp-api-id: <api-key>' \
--header 'asapp-api-secret: <api-key>' \
--data '{
"items": [
{
"externalConversationId": "id-509",
"externalCustomerId": "555.555.0100-jdoe@example.com",
"eventId": "eventId-1938",
"status": "new",
"phoneNumber": "(555)555-0100",
"emailAddress": "jdoe@example.com",
"userId": "user908038",
"addressCountry": "United-States",
"addressState": "New-York",
"addressZipcode": "10001",
"attributes": [
{
"name": "attr1_name",
"value": "attr1_value"
},
{
"name": "attr2_name",
"value": "attr2_value"
}
]
},
{
"externalConversationId": "id-203",
"externalCustomerId": "555.555.0101-mdoe@example.com",
"eventId": "eventId-1331",
"status": "existing",
"phoneNumber": "(555)555-0101",
"emailAddress": "mdoe@example.com",
"userId": "user3201033",
"addressCountry": "United-States",
"addressState": "New-York",
"addressZipcode": "10002",
"attributes": [
{
"name": "attr1_name",
"value": "attr1_value"
},
{
"name": "attr2_name",
"value": "attr2_value"
}
]
},
{
"externalConversationId": "id-69221",
"externalCustomerId": "555.555.0191",
"attributes": null
},
{
"externalConversationId": "id-69223",
"externalCustomerId": "555.555.0193"
},
{
"externalConversationId": "id-69229",
"externalCustomerId": "zdoe@example.com",
"phoneNumber": null,
"userId": null,
"addressCountry": null
}
]
}'
{
"errorCount": 1,
"results": [
{
"eventId": "5484e507-feaf-11ec-bfc1-fda566fa9333",
"error": "FAIL_BAD_PARAMS: ERROR: agent id cannot be blank"
},
{
"eventId": "fcf99667-feaf-11ec-a42e-11799134528c",
"error": ""
}
]
}
Body
A request to send more than one customer metadata; send a list of items
A set of customer metadata attributes
Conversation ID from the external chat / voice system
256
"issue509"
The customer id involved in respect to the issue in question
256
"555.555.0100-jdoe@example.com"
An event id used to track the submission; if none is provided, service will generate one
256
"eventId-1938"
The descriptive label to describe the customer's status and/or type
256
"new"
The customer's phone number
32
"(555)555-0100"
The customer's email address
"jdoe@example.com"
The customer's user Id
256
"user908038"
The country portion of the customer's address
128
"United-States"
The state portion of the customer's address
128
"New-York"
The zipcode/postal code portion of the customer's address
16
"10001"
A map of key-value pairs for extra metadata attributes
A key-value pair of additional metadata attributes
[
{
"name": "attr1_name",
"value": "attr1_value"
},
{
"name": "attr2_name",
"value": "attr2_value"
}
]
Response
Number of message sent with error(s)
A list of send result
A response with the status of a sent message
An UUID identifier string computed for the submitted event message
"5484e507-feaf-11ec-bfc1-fda566fa9333"
Status of the failed message if value is not blank; the error is contained in the string
"FAIL_BAD_PARAMS: ERROR: agent id cannot be blank"
Was this page helpful?
curl --request POST \
--url https://api.sandbox.asapp.com/metadata-ingestion/v1/many-customer-metadata \
--header 'Content-Type: application/json' \
--header 'asapp-api-id: <api-key>' \
--header 'asapp-api-secret: <api-key>' \
--data '{
"items": [
{
"externalConversationId": "id-509",
"externalCustomerId": "555.555.0100-jdoe@example.com",
"eventId": "eventId-1938",
"status": "new",
"phoneNumber": "(555)555-0100",
"emailAddress": "jdoe@example.com",
"userId": "user908038",
"addressCountry": "United-States",
"addressState": "New-York",
"addressZipcode": "10001",
"attributes": [
{
"name": "attr1_name",
"value": "attr1_value"
},
{
"name": "attr2_name",
"value": "attr2_value"
}
]
},
{
"externalConversationId": "id-203",
"externalCustomerId": "555.555.0101-mdoe@example.com",
"eventId": "eventId-1331",
"status": "existing",
"phoneNumber": "(555)555-0101",
"emailAddress": "mdoe@example.com",
"userId": "user3201033",
"addressCountry": "United-States",
"addressState": "New-York",
"addressZipcode": "10002",
"attributes": [
{
"name": "attr1_name",
"value": "attr1_value"
},
{
"name": "attr2_name",
"value": "attr2_value"
}
]
},
{
"externalConversationId": "id-69221",
"externalCustomerId": "555.555.0191",
"attributes": null
},
{
"externalConversationId": "id-69223",
"externalCustomerId": "555.555.0193"
},
{
"externalConversationId": "id-69229",
"externalCustomerId": "zdoe@example.com",
"phoneNumber": null,
"userId": null,
"addressCountry": null
}
]
}'
{
"errorCount": 1,
"results": [
{
"eventId": "5484e507-feaf-11ec-bfc1-fda566fa9333",
"error": "FAIL_BAD_PARAMS: ERROR: agent id cannot be blank"
},
{
"eventId": "fcf99667-feaf-11ec-a42e-11799134528c",
"error": ""
}
]
}