Middle
Construct a URL based on the data from the tables below to obtain client information: GET:/api/clients/information/... | Attribute | Data Type | Constraint | Description | Mandatory | |--------------|------------|----------------|--------------------------------------------------|------------| | clientId | string | maxLength: 64 | Client identifier | [1] | | Attribute | Data Type | Constraint | Description | Mandatory | |--------------|------------|----------------|--------------------------------------------------|------------| | requestInfo | array | maxItems: 200 | Set of systems to be queried for client information | [0..n] | | requestInfo | string | maxLength: 64 | Name of the system | [0..1] |
sobes.tech AI
Answer from AI
To obtain client information, the URL will look like this:
GET /api/clients/information/{clientId}?requestInfo=system1&requestInfo=system2
where:
{clientId}— a required path parameter, the client identifier (string up to 64 characters).requestInfo— an optional query parameter, can be repeated to specify multiple systems (each string up to 64 characters), with a maximum of 200 elements.
Example:
GET /api/clients/information/12345?requestInfo=crm&requestInfo=billing