Generate Unique Address
GEThttps://callback.business-server.exampleanchor.com/unique_address
If the platform is configured with depositInfoGeneratorType: api
, the Platform make this request to the Anchor backend every time a transaction is initiated by a client application.
The Anchor must guarantee that the memo returned in this request is unique, so it can be mapped 1-to-1 to a Platform resource such as a SEP-31 transaction.
Here is how this flow would be used for Receiving Anchors that need to create their unique (account, memo)
pairs outside the platform, using Circle:
Request
Query Parameters
The platform server will save the posted transaction and pass the transaction_id
through this endpoint.
If the anchor wishes to return transaction-dependent unique_address, the anchor may query the GET /transactions
endpoint of the Platform API.
Responses
- 200
- 500
- application/json
- Schema
- Example (from schema)
Schema
unique_address
object
{
"unique_address": {
"stellar_address": "string",
"memo": "string",
"memo_type": "text"
}
}
Error. The Platform will respond to the client application with the same response code and body.
- application/json
- Schema
- Example (from schema)
Schema
{
"error": "string",
"id": "string"
}
- csharp
- curl
- dart
- go
- http
- java
- javascript
- kotlin
- c
- nodejs
- objective-c
- ocaml
- php
- powershell
- python
- r
- ruby
- rust
- shell
- swift
- HTTPCLIENT
- RESTSHARP
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://callback.business-server.exampleanchor.com/unique_address");
request.Headers.Add("Accept", "application/json");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());