/Wallet/GetServiceProvidersForBuyingEDaler

Allows the client to retrieve a list of available service providers that can be used to buy eDaler.

JSON

Request
{
}
Response (if successful)
{
	"Providers":
	{
		"id": Required(Str(PId)),
		"type": Required(Str(PType)),
		"name": Required(Str(PName)),
		"iconUrl": Optional(Str(PUconUrl)),
		"iconWidth": Optional(Int(PIconWidth)),
		"iconHeight": Optional(Int(PIconHeight)),
		"templateId": Optional(Str(PTemplateId))
	}?[]
}

XML

Request
<GetServiceProvidersForBuyingEDaler xmlns="https://waher.se/Schema/BrokerAgent.xsd"/>
Response (if successful)
<ProvidersResponse xmlns="https://waher.se/Schema/BrokerAgent.xsd">
	<Providers>
		<[
		<Provider id=(Required(Str(PId)))
							type=(Required(Str(PType)))
							name=(Required(Str(PName)))
							iconUrl=(Optional(Str(PUconUrl)))
							iconWidth=(Optional(Int(PIconWidth)))
							iconHeight=(Optional(Int(PIconHeight)))
							templateId=(Optional(Str(PTemplateId)))/>?[]
		]>
	</Providers>
</ProvidersResponse>

Response Parameters

Parameter Description
PId ID of service provider.
PType Type (class name) of service provider.
PName Displayable name for service provider.
PIconUrl Optional reference to icon that can be displayed together with the name.
PIconWidth Width of optional icon.
PIconHeight Height of optional icon.
PTemplateId Reference to optional smart contract. If provided, a smart contract needs to be created based on this template, and then signed by the client, to buy eDaler using the service provider. The contract contains necessary parameters and information for the service provider to be able to process the request. If a contract template is not provided, it can be assued the service provider will collect the information via a web page, that the client must open and complete.

Javascript Library

Use the following asynchronous method in the Javascript Library, to call this resource.

var Response = await AgentAPI.Wallet.GetServiceProvidersForBuyingEDaler();
Test

Request Payload:

   

Response Payload: