/
Browse
/
Courses
/
Developing with SAP Customer Data Platform
/
Consuming the SAP Customer Data Platform API
Consuming the SAP Customer Data Platform API
Creating Admin Credentials for API Access in the SAP Customer Data Platform
25 min
Searching Customer Data using the Query API in the SAP Customer Data Platform
34 min
Ingesting Customer Data with the Ingestion API in the SAP Customer Data Platform
32 min
Quiz
Tuning the SAP Customer Data Platform Ingestion
Configuring Event Metadata in the SAP Customer Data Platform
10 min
Setting Up a New Connector in the Connector Studio
16 min
Enriching Customer Data Ingestion using Extensions in the SAP Customer Data Platform
26 min
Quiz
Consuming the SAP Customer Data Platform API
Creating Admin Credentials for API Access in the SAP Customer Data Platform
25 min
Searching Customer Data using the Query API in the SAP Customer Data Platform
34 min
Ingesting Customer Data with the Ingestion API in the SAP Customer Data Platform
32 min
Quiz
Tuning the SAP Customer Data Platform Ingestion
Configuring Event Metadata in the SAP Customer Data Platform
10 min
Setting Up a New Connector in the Connector Studio
16 min
Enriching Customer Data Ingestion using Extensions in the SAP Customer Data Platform
26 min
Quiz
Knowledge quiz
It's time to put what you've learned to the test, get 5 right to pass this unit.
1.
When constructing a query to retrieve customer profiles where the customer's name is "John Doe" and the customer is part of a specific segment, which of the following is the correct query syntax?
Choose the correct answer.
SELECT * FROM profile WHERE attributes.name = "John Doe" AND segments.name = "segment name"
SELECT * FROM profile WHERE attributes.name = "John Doe" HAVING segments.name = "segment name"
SELECT * FROM profile WHERE attributes.name = "John Doe" HAVING(segments, (segments.name = "segment name" AND segments.value = "segment value"))
SELECT * FROM profile WHERE attributes.name = "John Doe" AND segments.value = "segment value"
SELECT * FROM profile WHERE attributes.name = "John Doe" AND segments.name = "segment name" AND segments.value = "segment value"
2.
When authenticating a call to SAP Customer Data Platform APIs using an OAuth 2.0 JWT Bearer Token, where should the Bearer Token value be copied?
Choose the correct answer.
Into the query string parameters
Into the Authorization HTTP Header
Into the request body content
Into the URL path
Into the Destination Purposes field
3.
Which clause is not supported in the SAP Customer Data Cloud customer data queries using SQL syntax?
Choose the correct answer.
SELECT
WHERE
GROUP BY
ORDER BY
LIMIT
4.
What’s the fastest way to obtain the full URL endpoint that can be used to perform a call to the Ingestion API?
Choose the correct answer.
Just copy it from the Listener step inside the Event configuration on the SAP CDP Console.
Use an SAP CDP help provided sample and change the parameters accordingly.
Formulate the Ingestion URL by copying samples from the browser developer console.
Use the SAP CDP Console Event Playground, every event provides you with that.
Use the SAP Connector Studio, it contains out-of-box full URL endpoints for all events.
5.
Which of the following is a valid method to authenticate API calls to the SAP Customer Data Platform?
There are two correct answers.
Using a pair of Server Application User and Secret Keys
Using an API Key only
Using a username and password
Using an OAuth 2.0 JWT Bearer Token generated using an RSA Private Key
Using a client certificate
6.
What’s the fastest way to obtain a JSON sample payload that can be used to perform a call to the Ingestion API?
Choose the correct answer.
Just copy it from the Listener step inside the Event configuration on the SAP CDP Console.
Use an SAP CDP help provided sample and change the parameters accordingly.
Formulate the JSON sample payload by copying samples from the browser developer console.
Use the SAP CDP Console Event Playground, every event provides you with that.
Use the SAP Connector Studio, it contains out-of-box JSON sample payloads for all events.